From 5de9d86fab2b8bec58bd09e95640da468d4e1f61 Mon Sep 17 00:00:00 2001 From: Manjunath Ranganathaiah Date: Tue, 10 Apr 2018 13:22:00 -0700 Subject: Add maven build structure Restructure the directories and files to accommodate maven build. This will build, test and generate jar file for clients to use. Adds a target in the top level makefile. Issue-ID: AAF-183 Change-Id: I8c27396248d83070befe51f2c6e01aed7dea9202 Signed-off-by: Manjunath Ranganathaiah --- sms-client/src/java/main/SmsClient.java | 256 ----------------------------- sms-client/src/java/main/SmsInterface.java | 90 ---------- sms-client/src/java/main/SmsResponse.java | 57 ------- 3 files changed, 403 deletions(-) delete mode 100644 sms-client/src/java/main/SmsClient.java delete mode 100644 sms-client/src/java/main/SmsInterface.java delete mode 100644 sms-client/src/java/main/SmsResponse.java (limited to 'sms-client/src/java/main') diff --git a/sms-client/src/java/main/SmsClient.java b/sms-client/src/java/main/SmsClient.java deleted file mode 100644 index 17a9f16..0000000 --- a/sms-client/src/java/main/SmsClient.java +++ /dev/null @@ -1,256 +0,0 @@ -/* - * Copyright 2018 Intel Corporation, Inc - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.onap.aaf.sms; - -import javax.net.ssl.SSLSocketFactory; -import java.net.URL; -import javax.net.ssl.HttpsURLConnection; -import org.onap.aaf.sms.SmsResponse; -import java.io.InputStream; -import java.io.OutputStream; -import java.io.InputStreamReader; -import java.io.BufferedReader; -import java.io.OutputStreamWriter; -import java.util.Map; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.ArrayList; -import org.json.JSONArray; -import org.json.JSONException; -import org.json.JSONObject; - -public class SmsClient implements SmsInterface { - - private String baset; - private SSLSocketFactory ssf; - - public SmsClient(String host, int port, SSLSocketFactory s) { - baset = "https://"+ host + ":" + port + "/v1/sms"; - ssf = s; - } - public SmsClient(String host, int port, String version, SSLSocketFactory s) { - baset = "https://"+ host + ":" + port + "/" + version + "/sms"; - ssf = s; - } - - private Map getSubmap(Map raw, String k) { - Object v = raw.get(k); - if ( v != null ) { - Map r = (Map)v; - return(r); - } - else { - return(null); - } - } - - private List jsontolist(JSONArray a) throws JSONException { - List l = new ArrayList(); - for(int i=0;i jsontomap(JSONObject j) throws JSONException { - Map m = new HashMap(); - - Iterator ks = j.keys(); - while( ks.hasNext() ) { - String k = (String)ks.next(); - Object v = j.get(k); - - if ( v instanceof JSONArray ) { - v = jsontolist((JSONArray) v); - } else if ( v instanceof JSONObject ) { - v = jsontomap((JSONObject) v); - } - m.put(k, v); - } - return(m); - } - - protected Map strtomap(String r) throws JSONException { - JSONObject jobj = null; - - jobj = new JSONObject(r); - return(jsontomap(jobj)); - - } - protected SmsResponse execute(String reqtype, String t, String ins, boolean input, boolean output) { - - HttpsURLConnection conn; - int errorcode = -1; - SmsResponse resp = new SmsResponse(); - - try { - URL url = new URL(t); - conn = (HttpsURLConnection)url.openConnection(); - conn.setSSLSocketFactory(ssf); - conn.setRequestMethod(reqtype); - conn.setDoOutput(true); - conn.setDoInput(true); - conn.setRequestProperty("Content-Type", "application/json"); - conn.setRequestProperty("Accept", "application/json"); - - if ( input ) { - OutputStream out = conn.getOutputStream(); - OutputStreamWriter wr = new OutputStreamWriter(out); - wr.write(ins); - wr.flush(); - wr.close(); - } - errorcode = conn.getResponseCode(); - if ( output && errorcode > 0 ) { - InputStream inputstream = conn.getInputStream(); - InputStreamReader inputstreamreader = new InputStreamReader(inputstream); - BufferedReader bufferedreader = new BufferedReader(inputstreamreader); - - String response; - String save = ""; - while ((response = bufferedreader.readLine()) != null) { - save = save + response; - } - if ( !save.isEmpty() ) { - if ( errorcode/100 == 2 ) { - resp.setResponse(strtomap(save)); - } else { - resp.setErrorMessage(save); - } - } - } - } catch ( Exception e ) { - e.printStackTrace(); - resp.setResponseCode(errorcode); - return(resp); - } - resp.setResponseCode(errorcode); - return resp; - } - @Override - public SmsResponse createDomain(String dname) { - - String t = baset + "/domain"; - String input = "{\"name\":\"" + dname + "\"}"; - - SmsResponse resp = execute("POST", t, input, true, true); - int errcode = resp.getResponseCode(); - - if ( errcode > 0 && errcode/100 == 2 ) - resp.setSuccess(true); - else - resp.setSuccess(false); - - return(resp); - } - @Override - public SmsResponse deleteDomain(String dname) { - - String t = baset + "/domain/" + dname; - - SmsResponse resp = execute("DELETE", t, null, false, true); - int errcode = resp.getResponseCode(); - - if ( errcode > 0 && errcode/100 == 2 ) - resp.setSuccess(true); - else - resp.setSuccess(false); - - return(resp); - } - @Override - public SmsResponse storeSecret(String dname, String sname, Map values) { - - String t = baset + "/domain/" + dname + "/secret"; - Map cm = new HashMap(); - cm.put("name", sname); - cm.put("values", values); - JSONObject jobj = new JSONObject(cm); - - SmsResponse resp = execute("POST", t, jobj.toString(), true, false); - int errcode = resp.getResponseCode(); - - if ( errcode > 0 && errcode/100 == 2 ) - resp.setSuccess(true); - else - resp.setSuccess(false); - - return(resp); - } - @Override - public SmsResponse getSecretNames(String dname) { - - String t = baset + "/domain/" + dname + "/secret"; - - SmsResponse resp = execute("GET", t, null, false, true); - int errcode = resp.getResponseCode(); - - if ( errcode > 0 && errcode/100 == 2 ) - resp.setSuccess(true); - else - resp.setSuccess(false); - - return(resp); - } - @Override - public SmsResponse getSecret(String dname, String sname) { - - String t = baset + "/domain/" + dname + "/secret/" + sname; - - SmsResponse resp = execute("GET", t, null, false, true); - int errcode = resp.getResponseCode(); - - if ( errcode > 0 && errcode/100 == 2 ) { - Map m = getSubmap(resp.getResponse(), "values"); - if ( m != null ) { - resp.setSuccess(true); - resp.setResponse(m); - } - else { - resp.setSuccess(false); - } - } - else { - resp.setSuccess(false); - } - - return(resp); - - } - @Override - public SmsResponse deleteSecret(String dname, String sname) { - - String t = baset + "/domain/" + dname + "/secret/" + sname; - - SmsResponse resp = execute("DELETE", t, null, false, true); - int errcode = resp.getResponseCode(); - - if ( errcode > 0 && errcode/100 == 2 ) - resp.setSuccess(true); - else - resp.setSuccess(false); - - return(resp); - } -} diff --git a/sms-client/src/java/main/SmsInterface.java b/sms-client/src/java/main/SmsInterface.java deleted file mode 100644 index 31875d7..0000000 --- a/sms-client/src/java/main/SmsInterface.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Copyright 2018 Intel Corporation, Inc - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.onap.aaf.sms; - -import org.onap.aaf.sms.SmsResponse; -import java.util.Map; - -public interface SmsInterface { - /* - Inputs dname - domain name - Output - name and uuid - Return SmsResponse object - success or failure - response code if connection succeeded, otherwise -1 - response string if expected. - */ - public SmsResponse createDomain(String dname); - - /* - Inputs dname - domain name - Output - none - Return SmsResponse object - success or failure - response code if connection succeeded, otherwise -1 - response string if expected. - - */ - public SmsResponse deleteDomain(String dname); - - /* - Inputs dname - domain name - Output - list of secret names - Return SmsResponse object - success or failure - response code if connection succeeded, otherwise -1 - response string if expected. - - */ - public SmsResponse getSecretNames(String dname); - - /* - Inputs dname - domain name - sname - secret name - values - list of key value pairs - Output - none - Return SmsResponse object - success or failure - response code if connection succeeded, otherwise -1 - response string if expected. - - */ - public SmsResponse storeSecret(String dname, String sname, Map values); - - /* - Inputs dname - domain name - sname - secret name - Output values - list of value pairs - Return SmsResponse object - success or failure - response code if connection succeeded, otherwise -1 - response string if expected. - - */ - public SmsResponse getSecret(String dname, String sname); - - /* - Inputs dname - domain name - sname - secret name - Output - none - Return SmsResponse object - success or failure - response code if connection succeeded, otherwise -1 - response string if expected. - */ - public SmsResponse deleteSecret(String dname, String sname); -} diff --git a/sms-client/src/java/main/SmsResponse.java b/sms-client/src/java/main/SmsResponse.java deleted file mode 100644 index b7a9980..0000000 --- a/sms-client/src/java/main/SmsResponse.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright 2018 Intel Corporation, Inc - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.onap.aaf.sms; - -import java.util.Map; - -public class SmsResponse { - private boolean success; - private int responseCode; - private String errorMessage; - private Map response; - - public SmsResponse() { - success = false; - responseCode = -1; - errorMessage = ""; - response = null; - } - public void setResponseCode(int code) { - responseCode = code; - } - public void setResponse(Map res) { - response = res; - } - public void setSuccess(boolean val) { - success = val; - } - public int getResponseCode() { - return responseCode; - } - public void setErrorMessage(String em) { - errorMessage = em; - } - public String getErrorMessage() { - return errorMessage; - } - public Map getResponse() { - return response; - } - public boolean getSuccess() { - return success; - } -} -- cgit 1.2.3-korg