summaryrefslogtreecommitdiff
path: root/qpid/java/common/src/main/java/org/apache/qpid/configuration/QpidProperty.java
blob: 9c0aaaec89e84042e17c9c6748e16aa75f556fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.apache.qpid.configuration;

import org.apache.qpid.configuration.Accessor.SystemPropertyAccessor;

abstract class QpidProperty<T>
{
    private T defValue;
    private String[] names;
    protected Accessor accessor;

    QpidProperty(T defValue, String... names)
    {
        this(new SystemPropertyAccessor(),defValue,names);
    }
    
    QpidProperty(Accessor accessor,T defValue, String... names)
    {
        this.accessor = accessor;
        this.defValue = defValue;
        this.names = names;
    }

    T get()
    {
        for (String name : names)
        {
            T obj = getByName(name);
            if (obj != null)
            {
                return obj;
            }
        }

        return defValue;
    }

    protected abstract T getByName(String name);

    public static QpidProperty<Boolean> booleanProperty(Boolean defaultValue,
            String... names)
    {
        return new QpidBooleanProperty(defaultValue, names);
    }

    public static QpidProperty<Boolean> booleanProperty(Accessor accessor,
            Boolean defaultValue,String... names)
    {
        return new QpidBooleanProperty(accessor,defaultValue, names);
    }
    
    public static QpidProperty<Integer> intProperty(Integer defaultValue,
            String... names)
    {
        return new QpidIntProperty(defaultValue, names);
    }

    public static QpidProperty<Integer> intProperty(Accessor accessor,
            Integer defaultValue, String... names)
    {
        return new QpidIntProperty(accessor,defaultValue, names);
    }
    
    public static QpidProperty<Long> longProperty(Long defaultValue,
            String... names)
    {
        return new QpidLongProperty(defaultValue, names);
    }

    public static QpidProperty<Long> longProperty(Accessor accessor,
            Long defaultValue, String... names)
    {
        return new QpidLongProperty(accessor,defaultValue, names);
    }
    
    public static QpidProperty<String> stringProperty(String defaultValue,
            String... names)
    {
        return new QpidStringProperty(defaultValue, names);
    }

    public static QpidProperty<String> stringProperty(Accessor accessor,
            String defaultValue,String... names)
    {
        return new QpidStringProperty(accessor,defaultValue, names);
    }
    
    static class QpidBooleanProperty extends QpidProperty<Boolean>
    {
        QpidBooleanProperty(Boolean defValue, String... names)
        {
            super(defValue, names);
        }
        
        QpidBooleanProperty(Accessor accessor,Boolean defValue, String... names)
        {
            super(accessor,defValue, names);
        }

        @Override
        protected Boolean getByName(String name)
        {
            return accessor.getBoolean(name);
        }
    }

    static class QpidIntProperty extends QpidProperty<Integer>
    {
        QpidIntProperty(Integer defValue, String... names)
        {
            super(defValue, names);
        }

        QpidIntProperty(Accessor accessor,Integer defValue, String... names)
        {
            super(accessor,defValue, names);
        }
        
        @Override
        protected Integer getByName(String name)
        {
            return accessor.getInt(name);
        }
    }

    static class QpidLongProperty extends QpidProperty<Long>
    {
        QpidLongProperty(Long defValue, String... names)
        {
            super(defValue, names);
        }

        QpidLongProperty(Accessor accessor,Long defValue, String... names)
        {
            super(accessor,defValue, names);
        }
        
        @Override
        protected Long getByName(String name)
        {
            return accessor.getLong(name);
        }
    }

    static class QpidStringProperty extends QpidProperty<String>
    {
        QpidStringProperty(String defValue, String... names)
        {
            super(defValue, names);
        }

        QpidStringProperty(Accessor accessor,String defValue, String... names)
        {
            super(accessor,defValue, names);
        }
        
        @Override
        protected String getByName(String name)
        {
            return accessor.getString(name);
        }
    }

}