OSDN Git Service

LICENSE
[android-x86/external-koush-Superuser.git] / Superuser / src / com / koushikdutta / superuser / db / UidPolicy.java
1 /*
2  * Copyright (C) 2013 Koushik Dutta (@koush)
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.koushikdutta.superuser.db;
18
19 import java.util.Date;
20
21 import com.koushikdutta.superuser.R;
22
23 public class UidPolicy extends UidCommand {
24     public static final String ALLOW = "allow";
25     public static final String DENY = "deny";
26     public static final String INTERACTIVE = "interactive";
27
28     public String policy;
29     public int until;
30     public boolean logging = true;
31     public Date getUntilDate() {
32         return new Date((long)until * 1000);
33     }
34
35     public int getPolicyResource() {
36         if (ALLOW.equals(policy))
37             return R.string.allow;
38         else if (INTERACTIVE.equals(policy))
39             return R.string.interactive;
40         return R.string.deny;
41     }
42     
43     public int last;
44     public Date getLastDate() {
45         return new Date((long)last * 1000);
46     }
47 }