Updating licenses in all files
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / openecomp / appc / domainmodel / lcm / RuntimeContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.domainmodel.lcm;
24
25 import java.time.Instant;
26 import java.util.Date;
27
28
29 public class RuntimeContext {
30
31     private RequestContext requestContext;
32     private ResponseContext responseContext;
33     private VNFContext vnfContext;
34
35     //TODO move fields timeStart abd isLockAcquired to a better place
36     private Instant timeStart;
37     private boolean isLockAcquired;
38     private String rpcName;
39
40     public String getRpcName() {
41         return rpcName;
42     }
43
44     public void setRpcName(String rpcName) {
45         this.rpcName = rpcName;
46     }
47
48     public Instant getTimeStart() {
49         return timeStart;
50     }
51
52     public boolean isLockAcquired() {
53         return isLockAcquired;
54     }
55
56     public void setIsLockAcquired(boolean isLockAcquired) {
57         this.isLockAcquired = isLockAcquired;
58     }
59
60     public void setTimeStart(Instant timeStart) {
61         this.timeStart = timeStart;
62     }
63
64     public RequestContext getRequestContext() {
65         return requestContext;
66     }
67
68     public void setRequestContext(RequestContext requestContext) {
69         this.requestContext = requestContext;
70     }
71
72     public ResponseContext getResponseContext() {
73         return responseContext;
74     }
75
76     public void setResponseContext(ResponseContext responseContext) {
77         this.responseContext = responseContext;
78     }
79
80     public VNFContext getVnfContext() {
81         return vnfContext;
82     }
83
84     public void setVnfContext(VNFContext vnfContext) {
85         this.vnfContext = vnfContext;
86     }
87
88     @Override
89     public String toString() {
90         return "RuntimeContext{" +
91                 "requestContext=" + requestContext +
92                 ", responseContext=" + responseContext +
93                 ", vnfContext=" + vnfContext +
94                 ", timeStart=" + timeStart +
95                 ", isLockAcquired=" + isLockAcquired +
96                 ", rpcName='" + rpcName + '\'' +
97                 '}';
98     }
99 }