AT&T 2.0.19 Code drop, stage 1
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / impl / EnvFactory.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.misc.env.impl;
23
24 import org.onap.aaf.misc.env.EnvJAXB;
25 import org.onap.aaf.misc.env.TransCreate;
26 import org.onap.aaf.misc.env.TransJAXB;
27
28 /**
29  * EnvFactory
30  * 
31  * @author Jonathan
32  * 
33  */
34 public class EnvFactory {
35
36         public static final String SCHEMA_DIR = "env-schema_dir";
37         public static final String DEFAULT_SCHEMA_DIR = "src/main/xsd";
38         static BasicEnv singleton;
39
40         static {
41                 singleton = new BasicEnv();
42         }
43         public static BasicEnv singleton() {
44                 return singleton;
45         }
46         
47         public static void setSingleton(BasicEnv be) {
48                 singleton = be;
49         }
50         
51         public static TransJAXB newTrans() {
52                 return new BasicTrans(singleton);
53         }
54
55         public static TransJAXB newTrans(EnvJAXB env) {
56                 return new BasicTrans(env);
57         }
58         
59         public static TransCreate<TransJAXB> transCreator() {
60                 return new TransCreate<TransJAXB>() {
61                         // @Override
62                         public BasicTrans newTrans() {
63                                 return singleton.newTrans();
64                         }
65                 };
66         }
67 }
68