910fcf219b1b5f773b375cb05ad38d691e5422d2
[aai/gizmo.git] / src / main / java / org / onap / crud / dao / DataRouterDAO.java
1 /**
2  * ============LICENSE_START=======================================================
3  * Gizmo
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  *
22  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23  */
24 package org.onap.crud.dao;
25
26 import org.eclipse.jetty.util.security.Password;
27 import org.onap.aai.cl.api.Logger;
28 import org.onap.aai.cl.eelf.LoggerFactory;
29 import org.onap.aai.restclient.client.RestClient;
30 import org.onap.aai.restclient.enums.RestAuthenticationMode;
31 import org.onap.crud.dao.champ.ChampDao;
32 import org.onap.crud.util.CrudServiceConstants;
33
34 public class DataRouterDAO extends ChampDao {
35   private Logger logger = LoggerFactory.getInstance().getLogger(DataRouterDAO.class.getName());
36
37   public DataRouterDAO(String url, String certPassword) {
38     try {
39       client = new RestClient().authenticationMode(RestAuthenticationMode.SSL_CERT).validateServerHostname(false)
40           .validateServerCertChain(false).clientCertFile(CrudServiceConstants.CRD_DATAROUTER_AUTH_FILE)
41           .clientCertPassword(Password.deobfuscate(certPassword));
42
43       baseObjectUrl = url + OBJECT_SUB_URL;
44       baseRelationshipUrl = url + RELATIONSHIP_SUB_URL;
45      } catch (Exception e) {
46       System.out.println("Error setting up datarouter configuration");
47       e.printStackTrace();
48       System.exit(1);
49     }
50   }
51 }