AT&T 2.0.19 Code drop, stage 1
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / impl / AbsTransJAXB.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 javax.xml.namespace.QName;
25 import javax.xml.validation.Schema;
26
27 import org.onap.aaf.misc.env.APIException;
28 import org.onap.aaf.misc.env.DataFactory;
29 import org.onap.aaf.misc.env.EnvJAXB;
30 import org.onap.aaf.misc.env.TransJAXB;
31
32 public abstract class AbsTransJAXB extends AbsTrans<EnvJAXB> implements TransJAXB {
33         public AbsTransJAXB(EnvJAXB env) {
34                 super(env);
35         }
36         
37 //      @Override
38         public <T> DataFactory<T> newDataFactory(Class<?>... classes) throws APIException {
39                 return delegate.newDataFactory(classes);
40         }
41
42 //      @Override
43         public <T> DataFactory<T> newDataFactory(Schema schema, Class<?>... classes) throws APIException {
44                 return delegate.newDataFactory(schema, classes);
45         }
46
47 //      @Override
48         public <T> DataFactory<T> newDataFactory(QName qName, Class<?>... classes) throws APIException {
49                 return delegate.newDataFactory(qName, classes);
50         }
51
52 //      @Override
53         public <T> DataFactory<T> newDataFactory(Schema schema, QName qName, Class<?>... classes) throws APIException {
54                 return delegate.newDataFactory(schema, qName, classes);
55         }
56
57 }