Update project structure for aaf/cadi
[aaf/cadi.git] / client / src / main / java / org / onap / aaf / cadi / http / HTransferSS.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.cadi.http;\r
24 \r
25 import java.io.IOException;\r
26 import java.net.HttpURLConnection;\r
27 import java.security.Principal;\r
28 \r
29 import javax.net.ssl.HttpsURLConnection;\r
30 \r
31 import org.onap.aaf.cadi.CadiException;\r
32 import org.onap.aaf.cadi.client.AbsTransferSS;\r
33 import org.onap.aaf.cadi.config.Config;\r
34 import org.onap.aaf.cadi.config.SecurityInfoC;\r
35 \r
36 \r
37 public class HTransferSS extends AbsTransferSS<HttpURLConnection> {\r
38         public HTransferSS(Principal principal, String app) throws IOException {\r
39                 super(principal, app);\r
40         }\r
41         \r
42         public HTransferSS(Principal principal, String app, SecurityInfoC<HttpURLConnection> si) {\r
43                 super(principal, app, si);\r
44         }\r
45 \r
46         @Override\r
47         public void setSecurity(HttpURLConnection huc) throws CadiException {\r
48                 if(value!=null) {\r
49                                 if(defSS==null) {\r
50                                         throw new CadiException("Need App Credentials to send message");\r
51                                 }\r
52                                 defSS.setSecurity(huc);\r
53                                 huc.addRequestProperty(Config.CADI_USER_CHAIN, value);\r
54                 }\r
55                 if(securityInfo!=null) {\r
56                         securityInfo.setSocketFactoryOn((HttpsURLConnection)huc);\r
57                 }\r
58         }\r
59         \r
60         @Override\r
61         public int setLastResponse(int respCode) {\r
62                 return 0;\r
63         }\r
64 \r
65 }\r