AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cass / src / main / java / org / onap / aaf / auth / direct / DirectLocatorCreator.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.auth.direct;
23
24 import org.onap.aaf.auth.dao.cass.LocateDAO;
25 import org.onap.aaf.auth.env.AuthzEnv;
26 import org.onap.aaf.cadi.LocatorException;
27 import org.onap.aaf.cadi.aaf.v2_0.AbsAAFLocator;
28
29 public class DirectLocatorCreator implements AbsAAFLocator.LocatorCreator {
30         private final AuthzEnv env;
31         private final LocateDAO locateDAO;
32         private String myhostname;
33         private int myport;
34         
35         public DirectLocatorCreator(AuthzEnv env, LocateDAO locateDAO) {
36                 this.env = env;
37                 this.locateDAO = locateDAO;
38         }
39         
40         @Override
41         public AbsAAFLocator<?> create(String key, String version) throws LocatorException {
42                 DirectAAFLocator dal = new DirectAAFLocator(env,locateDAO,key,version);
43                 if(myhostname!=null) {
44                         dal.setSelf(myhostname, myport);
45                 }
46                 return dal;
47         }
48         
49         /**
50          * Make sure DirectAAFLocator created does not include self.
51          * @param hostname
52          * @param port
53          */
54         public void setSelf(String hostname, int port) {
55                 myhostname = hostname;
56                 myport = port;
57         }
58
59 }