bd2eeae5193d32b80e5fe4a450019743407738cc
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / HMangrStub.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 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
23 package org.onap.aaf.auth.cmd.test;
24
25 import java.net.HttpURLConnection;
26 import java.net.URI;
27
28 import org.onap.aaf.cadi.Access;
29 import org.onap.aaf.cadi.Locator;
30 import org.onap.aaf.cadi.LocatorException;
31 import org.onap.aaf.cadi.SecuritySetter;
32 import org.onap.aaf.cadi.client.Rcli;
33 import org.onap.aaf.cadi.client.Retryable;
34 import org.onap.aaf.cadi.http.HMangr;
35
36 public class HMangrStub extends HMangr {
37     
38     private Rcli<HttpURLConnection> clientMock;
39
40     public HMangrStub(Access access, Locator<URI> loc, Rcli<HttpURLConnection> clientMock) throws LocatorException {
41         super(access, loc);
42         this.clientMock = clientMock;
43     }
44
45     @Override public<RET> RET same(SecuritySetter<HttpURLConnection> ss, Retryable<RET> retryable) {
46         try {
47             return retryable.code(clientMock);
48         } catch (Exception e) {
49         }
50         return null;
51     }
52     @Override public<RET> RET oneOf(SecuritySetter<HttpURLConnection> ss, Retryable<RET> retryable, boolean notify, String host) {
53         try {
54             return retryable.code(clientMock);
55         } catch (Exception e) {
56         }
57         return null;
58     }
59 }