b8d05849ea37fea996d33b31ec29ac05922ca001
[hespiff.git] / src / main / java / org / hedgecode / xml / xspf / Properties.java
1 /*
2  * Copyright (c) 2015. Developed by Hedgecode.
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.hedgecode.xml.xspf;
18
19 import java.util.HashMap;
20 import java.util.Map;
21
22 /**
23  *
24  *
25  * @author Dmitry Samoshin aka gotty
26  */
27 public final class Properties {
28
29     public static final String CHARSET = "xspf.charset";
30     public static final String FORMATTED = "xspf.formatted";
31     public static final String STANDALONE = "xspf.standalone";
32
33     private static final Map<String, Object> props = new HashMap<String, Object>() {
34         {
35             put(CHARSET, XSPFConstants.DEF_CHARSET);
36             put(FORMATTED, Boolean.TRUE);
37             put(STANDALONE, Boolean.FALSE);
38         }
39     };
40
41     public static void setProperty(String name, Object value) {
42         if (props.containsKey(name)) {
43             if (props.get(name).getClass().equals(value.getClass()))
44                 props.put(name, value);
45         }
46     }
47
48     public static Object getProperty(String name, Class<?> clazz) {
49         if (clazz != null && props.containsKey(name)) {
50             Object property = props.get(name);
51             if (clazz.isAssignableFrom(property.getClass()))
52                 return property;
53         }
54         return null;
55     }
56
57     private Properties() {
58         throw new AssertionError(
59                 "I am so paranoid!"
60         );
61     }
62
63 }