74bf805dd7305f97e8d228034076f576a6ecae58
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / util / Chmod.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.util;
23
24 import java.io.File;
25 import java.io.IOException;
26
27 public interface Chmod {
28         public void chmod(File f) throws IOException;
29         
30         public static final Chmod to755 = new Chmod() {
31                 public void chmod(File f) throws IOException {
32                         f.setExecutable(true, false);
33                         f.setExecutable(true, true);
34                         f.setReadable(true, false);
35                         f.setReadable(true, true);
36                         f.setWritable(false, false);
37                         f.setWritable(true, true);
38                 }
39         };
40
41         public static final Chmod to644 = new Chmod() {
42                 public void chmod(File f) throws IOException {
43                         f.setExecutable(false, false);
44                         f.setExecutable(false, true);
45                         f.setReadable(true, false);
46                         f.setReadable(true, true);
47                         f.setWritable(false, false);
48                         f.setWritable(true, true);
49                 }
50         };
51
52         public static final Chmod to400 = new Chmod() {
53                 public void chmod(File f) throws IOException {
54                         f.setExecutable(false, false);
55                         f.setExecutable(false, true);
56                         f.setReadable(false, false);
57                         f.setReadable(true, true);
58                         f.setWritable(false, false);
59                         f.setWritable(false, true);
60                 }
61         };
62 }