[AAF-21] Initial code import
[aaf/cadi.git] / aaf / src / test / java / com / att / aaf / example / CadiTest.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aai\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * Copyright © 2017 Amdocs\r
7  * * ===========================================================================\r
8  * * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * * you may not use this file except in compliance with the License.\r
10  * * You may obtain a copy of the License at\r
11  * * \r
12  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  * * \r
14  *  * Unless required by applicable law or agreed to in writing, software\r
15  * * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * * See the License for the specific language governing permissions and\r
18  * * limitations under the License.\r
19  * * ============LICENSE_END====================================================\r
20  * *\r
21  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22  * *\r
23  ******************************************************************************/\r
24 package com.att.aaf.example;\r
25 \r
26 import java.net.HttpURLConnection;\r
27 import java.net.URI;\r
28 \r
29 import com.att.cadi.Access;\r
30 import com.att.cadi.PropAccess;\r
31 import com.att.cadi.client.Future;\r
32 import com.att.cadi.config.SecurityInfoC;\r
33 import com.att.cadi.http.HClient;\r
34 import com.att.cadi.http.HX509SS;\r
35 \r
36 public class CadiTest {\r
37         public static void main(String args[]) {\r
38                 Access access = new PropAccess();\r
39                 try {\r
40                         SecurityInfoC<HttpURLConnection> si = new SecurityInfoC<HttpURLConnection>(access);\r
41                         HClient hclient = new HClient(\r
42                                 new HX509SS(si),\r
43                                 new URI("https://mithrilcsp.sbc.com:8085"),3000);\r
44                         hclient.setMethod("OPTIONS");\r
45                         hclient.setPathInfo("/gui/cadi/log/toggle/INFO");\r
46                         hclient.send();\r
47                         Future<String> future = hclient.futureReadString();\r
48                         if(future.get(5000)) {\r
49                                 System.out.println(future.value);\r
50                         } else {\r
51                                 System.out.printf("Error: %d-%s", future.code(),future.body());\r
52                         }\r
53                                 \r
54                 } catch (Exception e) {\r
55                         e.printStackTrace();\r
56                 }\r
57 \r
58         }\r
59 }\r