aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhekeguang <hekeguang@chinamobile.com>2020-02-29 14:41:56 +0800
committerhekeguang <hekeguang@chinamobile.com>2020-02-29 14:42:15 +0800
commit83663f38d21c37cff27f3986c49a4b4aca284c72 (patch)
treed7e0b5c3ebeb1e135a0b08cc98a364e4b41b7dec
parentd618a8627c720f9f88a40d702c6d10354212b87b (diff)
Remove useless code
Issue-ID: USECASEUI-368 Change-Id: I6f9327f63cc3816a2f86fc65298e7d8584d77ad3 Signed-off-by: hekeguang <hekeguang@chinamobile.com>
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService-595b4273.javaoldbuyong88
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService.javalocal114
2 files changed, 0 insertions, 202 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService-595b4273.javaoldbuyong b/server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService-595b4273.javaoldbuyong
deleted file mode 100644
index bd33ae52..00000000
--- a/server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService-595b4273.javaoldbuyong
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * 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.service.slicingdomain.so;
-
-import org.onap.usecaseui.server.service.lcm.domain.so.bean.DeleteOperationRsp;
-import org.onap.usecaseui.server.service.lcm.domain.so.bean.OperationProgressInformation;
-import org.onap.usecaseui.server.service.lcm.domain.so.bean.ServiceOperation;
-import org.onap.usecaseui.server.service.slicingdomain.aai.bean.AAIAllottedResources;
-import org.onap.usecaseui.server.service.slicingdomain.aai.bean.AAIServiceInstance;
-import org.onap.usecaseui.server.service.slicingdomain.aai.bean.AAIServiceInstanceRsp;
-import org.onap.usecaseui.server.service.slicingdomain.aai.bean.AAIServiceNST;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.ActivateService;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.SOOperation;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.SOTask;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.SOTaskD;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.SOTaskRsp;
-
-import com.alibaba.fastjson.JSONObject;
-
-import okhttp3.RequestBody;
-import okhttp3.ResponseBody;
-import retrofit2.Call;
-import retrofit2.http.Body;
-import retrofit2.http.DELETE;
-import retrofit2.http.GET;
-import retrofit2.http.Headers;
-import retrofit2.http.POST;
-import retrofit2.http.PUT;
-import retrofit2.http.Path;
-import retrofit2.http.Query;
-
-public interface SOSliceService {
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @GET("/onap/so/infra/e2eServiceInstances/v3/{serviceId}/operations/{operationId}")
- Call<SOOperation> queryOperationProgress(@Path("serviceId") String serviceId,
- @Path("operationId") String operationId);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @POST("/onap/so/infra/e2eServiceInstances/v3/{serviceInstanceId}/activate")
- Call<ActivateService> activeService(@Path("serviceInstanceId") String serviceInstanceId, @Body RequestBody body);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @POST("/onap/so/infra/e2eServiceInstances/v3/{serviceInstanceId}/deactivate")
- Call<ActivateService> deactiveService(@Path("serviceInstanceId") String serviceInstanceId, @Body RequestBody body);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @DELETE("/onap/so/infra/e2eServiceInstances/v3/{serviceInstanceId}")
- Call<ActivateService> terminateService(@Path("serviceInstanceId") String serviceInstanceId, @Body RequestBody body);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @GET("/onap/so/infra/orchestrationTasks/v4")
- Call<SOTaskRsp> listTask();
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @GET("/onap/so/infra/orchestrationTasks/v4")
- Call<SOTaskRsp> listTaskByStage(@Query("status") String status );
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @GET("/onap/so/infra/orchestrationTasks/v4/{taskId}")
- Call<SOTask> getTaskById(@Path("taskId") String taskId);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @GET("/onap/so/infra/orchestrationTasks/v4/{taskId}")
- Call<SOTaskD> getTaskByIdD(@Path("taskId") String taskId);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @PUT("/onap/so/infra/orchestrationTasks/v4/{taskId}")
- Call<ResponseBody> updateService(@Path("taskId") String taskId, @Body RequestBody body);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @POST("/onap/so/infra/orchestrationTasks/v4/{taskId}/commit")
- Call<ResponseBody> commitTask(@Path("taskId") String taskId);
-
-}
diff --git a/server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService.javalocal b/server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService.javalocal
deleted file mode 100644
index 26f344af..00000000
--- a/server/src/main/java/org/onap/usecaseui/server/service/slicingdomain/so/SOSliceService.javalocal
+++ /dev/null
@@ -1,114 +0,0 @@
-/*
- * 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.service.slicingdomain.so;
-
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.ActivateService;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.SOOperation;
-import org.onap.usecaseui.server.service.slicingdomain.so.bean.SOTask;
-
-import com.alibaba.fastjson.JSONArray;
-
-import okhttp3.RequestBody;
-import okhttp3.ResponseBody;
-import retrofit2.Call;
-import retrofit2.http.Body;
-import retrofit2.http.DELETE;
-import retrofit2.http.GET;
-import retrofit2.http.Headers;
-import retrofit2.http.POST;
-import retrofit2.http.PUT;
-import retrofit2.http.Path;
-import retrofit2.http.Query;
-
-public interface SOSliceService {
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @GET("/onap/so/infra/e2eServiceInstances/v3/{serviceId}/operations/{operationId}")
- Call<SOOperation> queryOperationProgress(@Path("serviceId") String serviceId,
- @Path("operationId") String operationId);
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @POST("/onap/so/infra/e2eServiceInstances/v3/{serviceInstanceId}/activate")
- Call<ActivateService> activeService(@Path("serviceInstanceId") String serviceInstanceId, @Body RequestBody body);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @POST("/onap/so/infra/e2eServiceInstances/v3/{serviceInstanceId}/deactivate")
- Call<ActivateService> deactiveService(@Path("serviceInstanceId") String serviceInstanceId, @Body RequestBody body);
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @DELETE("/onap/so/infra/e2eServiceInstances/v3/{serviceInstanceId}")
- Call<ActivateService> terminateService(@Path("serviceInstanceId") String serviceInstanceId, @Body RequestBody body);
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @GET("/onap/so/infra/orchestrationTasks/v4")
- Call<JSONArray> listTask();
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @GET("/onap/so/infra/orchestrationTasks/v4")
- Call<JSONArray> listTaskByStage(@Query("status") String status );
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @GET("/onap/so/infra/orchestrationTasks/v4/{taskId}")
- Call<SOTask> getTaskById(@Path("taskId") String taskId);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @GET("/onap/so/infra/orchestrationTasks/v4/{taskId}")
- Call<SOTask> getTaskByIdD(@Path("taskId") String taskId);
-
- @Headers({ "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==", "Accept: application/json" })
- @PUT("/onap/so/infra/orchestrationTasks/v4/{taskId}")
- Call<ResponseBody> updateService(@Path("taskId") String taskId, @Body RequestBody body);
-
- @Headers({
- "X-TransactionId: 9999",
- "X-FromAppId: onap-cli",
- "Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==",
- "Accept: application/json"
- })
- @POST("/onap/so/infra/orchestrationTasks/v4/{taskId}/commit")
- Call<ResponseBody> commitTask(@Path("taskId") String taskId);
-
-}