summaryrefslogtreecommitdiffstats
path: root/sms-client/src/java/main/SmsResponse.java
diff options
context:
space:
mode:
authorManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>2018-04-10 13:22:00 -0700
committerManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>2018-04-11 09:01:51 -0700
commit5de9d86fab2b8bec58bd09e95640da468d4e1f61 (patch)
tree27f5a08e1de20df67a34d6b0d762639be1d5aea1 /sms-client/src/java/main/SmsResponse.java
parentc0830dc3d8ce9113fb29f9f81c7560b550b479ba (diff)
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 <manjunath.ranganathaiah@intel.com>
Diffstat (limited to 'sms-client/src/java/main/SmsResponse.java')
-rw-r--r--sms-client/src/java/main/SmsResponse.java57
1 files changed, 0 insertions, 57 deletions
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<String, Object> response;
-
- public SmsResponse() {
- success = false;
- responseCode = -1;
- errorMessage = "";
- response = null;
- }
- public void setResponseCode(int code) {
- responseCode = code;
- }
- public void setResponse(Map<String, Object> 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<String, Object> getResponse() {
- return response;
- }
- public boolean getSuccess() {
- return success;
- }
-}