Java API implementation for changes in simulator resource model.
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / BooleanProperty.java
1 /*
2  * Copyright 2015 Samsung Electronics All Rights Reserved.
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 org.oic.simulator;
18
19 public class BooleanProperty extends AttributeProperty {
20     private boolean mDefaultValue;
21
22     private BooleanProperty(boolean value) {
23         super(Type.BOOLEAN);
24         mDefaultValue = value;
25     }
26
27     @Override
28     public boolean isBoolean() {
29         return true;
30     }
31
32     @Override
33     public BooleanProperty asBoolean() {
34         return this;
35     }
36
37     public boolean getDefaultValue() {
38         return mDefaultValue;
39     }
40
41     @Override
42     public boolean validate(AttributeValue value) {
43         if (value.typeInfo().mType == AttributeValue.ValueType.BOOLEAN)
44             return true;
45         return false;
46     }
47
48     public boolean validate(boolean value) {
49         return true;
50     }
51
52     public static class Builder {
53         private boolean mDefaultValue = true;
54
55         public void setDefaultValue(boolean value) {
56             mDefaultValue = value;
57         }
58
59         public BooleanProperty build() {
60             return new BooleanProperty(mDefaultValue);
61         }
62     }
63 }