2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.openecomp.mso.adapters.requestsdb;
23 import javax.jws.WebMethod;
24 import javax.jws.WebParam;
25 import javax.jws.WebService;
26 import javax.xml.bind.annotation.XmlElement;
28 import org.openecomp.mso.adapters.requestsdb.exceptions.MsoRequestsDbException;
29 import org.openecomp.mso.requestsdb.InfraActiveRequests;
32 * MSO Request DB Adapter Web Service
34 @WebService(name = "RequestsDbAdapter", targetNamespace = "http://org.openecomp.mso/requestsdb")
35 public interface MsoRequestsDbAdapter {
38 public void updateInfraRequest (@WebParam(name = "requestId") @XmlElement(required = true) String requestId,
39 @WebParam(name = "lastModifiedBy") @XmlElement(required = true) String lastModifiedBy,
40 @WebParam(name = "statusMessage") @XmlElement(required = false) String statusMessage,
41 @WebParam(name = "responseBody") @XmlElement(required = false) String responseBody,
42 @WebParam(name = "requestStatus") @XmlElement(required = false) RequestStatusType requestStatus,
43 @WebParam(name = "progress") @XmlElement(required = false) String progress,
44 @WebParam(name = "vnfOutputs") @XmlElement(required = false) String vnfOutputs,
45 @WebParam(name = "serviceInstanceId") @XmlElement(required = false) String serviceInstanceId,
46 @WebParam(name = "networkId") @XmlElement(required = false) String networkId,
47 @WebParam(name = "vnfId") @XmlElement(required = false) String vnfId,
48 @WebParam(name = "vfModuleId") @XmlElement(required = false) String vfModuleId,
49 @WebParam(name = "volumeGroupId") @XmlElement(required = false) String volumeGroupId,
50 @WebParam(name = "serviceInstanceName") @XmlElement(required = false) String serviceInstanceName,
51 @WebParam(name = "vfModuleName") @XmlElement(required = false) String vfModuleName) throws MsoRequestsDbException;
54 public InfraActiveRequests getInfraRequest (@WebParam(name="requestId") @XmlElement(required = true) String requestId) throws MsoRequestsDbException;
57 public boolean getSiteStatus (@WebParam(name="siteName") @XmlElement(required = true) String siteName);
60 public void updateServiceOperationStatus (@WebParam(name = "serviceId") @XmlElement(required = true) String serviceId,
61 @WebParam(name = "operationId") @XmlElement(required = false) String operationId,
62 @WebParam(name = "operationType") @XmlElement(required = false) String operationType,
63 @WebParam(name = "userId") @XmlElement(required = false) String userId,
64 @WebParam(name = "result") @XmlElement(required = false) String result,
65 @WebParam(name = "operationContent") @XmlElement(required = false) String operationContent,
66 @WebParam(name = "progress") @XmlElement(required = false) String progress,
67 @WebParam(name = "reason") @XmlElement(required = false) String reason) throws MsoRequestsDbException;
70 public void initResourceOperationStatus (@WebParam(name = "serviceId") @XmlElement(required = true) String serviceId,
71 @WebParam(name = "operationId") @XmlElement(required = true) String operationId,
72 @WebParam(name = "operationType") @XmlElement(required = true) String operationType,
73 @WebParam(name = "resourceTemplateUUIDs") @XmlElement(required = true) String resourceTemplateUUIDs) throws MsoRequestsDbException;