Include impacted changes for APPC-346,APPC-348
[appc.git] / appc-provider / appc-provider-bundle / src / main / java / org / onap / appc / provider / lcm / mock / AbstractMockHelper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.provider.lcm.mock;
26
27 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.status.Status;
28 import org.onap.appc.domainmodel.lcm.ResponseContext;
29 import org.onap.appc.provider.lcm.service.AbstractBaseUtils;
30 import org.onap.appc.requesthandler.objects.RequestHandlerOutput;
31
32 import java.util.Properties;
33
34 /**
35  * Mock Helper abstract class
36  * provide common methods for all mock services
37  */
38 public class AbstractMockHelper extends AbstractBaseUtils {
39     protected RequestHandlerOutput requestHandlerOutput = new RequestHandlerOutput();
40     protected Properties properties = new Properties();
41     protected Status status;
42
43     public AbstractMockHelper() {
44         requestHandlerOutput.setResponseContext(new ResponseContext());
45     }
46
47     /**
48      * Get request handling status
49      * @return Status of this class
50      */
51     public Status getStatus() {
52         return status;
53     }
54
55     /**
56      * Set output Status to RequestHandlerOutput and return requestHandlerOutput.
57      * @return RequestHandlerOutput
58      */
59     protected RequestHandlerOutput setOutputStatus() {
60         org.onap.appc.domainmodel.lcm.Status outputStatus = new org.onap.appc.domainmodel.lcm.Status();
61         outputStatus.setCode(status.getCode());
62         outputStatus.setMessage(status.getMessage());
63         requestHandlerOutput.getResponseContext().setStatus(outputStatus);
64         return requestHandlerOutput;
65     }
66 }