Add uui-server common result 77/94077/1
authorshentao999 <shentao@chinamobile.com>
Thu, 22 Aug 2019 07:37:57 +0000 (15:37 +0800)
committershentao999 <shentao@chinamobile.com>
Thu, 22 Aug 2019 07:37:59 +0000 (15:37 +0800)
Change-Id: If82511c4c232f3e3cdce3bf1c0aac49a51e44557
Issue-ID: USECASEUI-307
Signed-off-by: shentao999 <shentao@chinamobile.com>
server/src/main/java/org/onap/usecaseui/server/bean/HttpResponseResult.java [new file with mode: 0644]
server/src/test/java/org/onap/usecaseui/server/controller/sotn/SotnControllerTest.java

diff --git a/server/src/main/java/org/onap/usecaseui/server/bean/HttpResponseResult.java b/server/src/main/java/org/onap/usecaseui/server/bean/HttpResponseResult.java
new file mode 100644 (file)
index 0000000..2e59c3e
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.
+ *
+ * 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.usecaseui.server.bean;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+
+@Setter
+@Getter
+public class HttpResponseResult implements Serializable {
+    private int resultCode;
+    private String resultContent;
+
+    public HttpResponseResult(
+            int resultCode,
+            String resultContent) {
+        this.resultCode = resultCode;
+        this.resultContent = resultContent;
+    }
+}
index 326fa1b..46f6522 100644 (file)
@@ -179,11 +179,6 @@ public class SotnControllerTest {
                verify(sotnService, times(1)).getServiceInstances(linkName,resourceVersion);
        }
        
-       @Test
-       public void TestGetData(){
-               sotnController.getData();
-       }
-       
        @Test
        public void TestDeleteExtNetwork(){
                String linkName="pnfName";