f68c1f6170f18557e773d27ff0abdc22dd54c8f6
[aaf/authz.git] / cadi / client / src / main / java / org / onap / aaf / cadi / http / HTransferSS.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.cadi.http;
23
24 import java.io.IOException;
25 import java.net.HttpURLConnection;
26
27 import javax.net.ssl.HttpsURLConnection;
28
29 import org.onap.aaf.cadi.CadiException;
30 import org.onap.aaf.cadi.client.AbsTransferSS;
31 import org.onap.aaf.cadi.config.Config;
32 import org.onap.aaf.cadi.config.SecurityInfoC;
33 import org.onap.aaf.cadi.principal.TaggedPrincipal;
34
35
36 public class HTransferSS extends AbsTransferSS<HttpURLConnection> {
37     public HTransferSS(TaggedPrincipal principal, String app) throws IOException {
38         super(principal, app);
39     }
40     
41     public HTransferSS(TaggedPrincipal principal, String app, SecurityInfoC<HttpURLConnection> si) {
42         super(principal, app, si);
43     }
44
45     @Override
46     public void setSecurity(HttpURLConnection huc) throws CadiException {
47         if (defSS==null) {
48             throw new CadiException("Need App Credentials to send message");
49         }
50         defSS.setSecurity(huc);
51         if (value!=null) {
52                 huc.addRequestProperty(Config.CADI_USER_CHAIN, value);
53         }
54         if (securityInfo!=null) {
55             securityInfo.setSocketFactoryOn((HttpsURLConnection)huc);
56         }
57     }
58     
59     @Override
60     public int setLastResponse(int respCode) {
61         return 0;
62     }
63
64 }