68ea95ba71d5c4dc20938350edf256a13dffa243
[appc.git] / appc-oam / appc-oam-bundle / src / main / java / org / openecomp / appc / oam / messageadapter / OAMContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
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  */
21
22 package org.openecomp.appc.oam.messageadapter;
23
24
25
26
27 import org.opendaylight.yang.gen.v1.org.openecomp.appc.oam.rev170303.*;
28 import org.opendaylight.yang.gen.v1.org.openecomp.appc.oam.rev170303.common.header.CommonHeader;
29 import org.opendaylight.yang.gen.v1.org.openecomp.appc.oam.rev170303.common.header.CommonHeaderBuilder;
30 import org.opendaylight.yang.gen.v1.org.openecomp.appc.oam.rev170303.status.Status;import org.openecomp.appc.oam.AppcOam;
31
32 public class OAMContext {
33
34     private AppcOam.RPC rpcName;
35     private CommonHeader commonHeader;
36     private Status status;
37
38
39     public AppcOam.RPC getRpcName() {
40         return rpcName;
41     }
42
43     public void setRpcName(AppcOam.RPC rpcName) {
44         this.rpcName = rpcName;
45     }
46
47     public CommonHeader getCommonHeader() {
48         return commonHeader;
49     }
50
51     public void setCommonHeader(CommonHeader commonHeader) {
52         this.commonHeader = commonHeader;
53     }
54
55     public Status getStatus() {
56         return status;
57     }
58
59     public void setStatus(Status status) {
60         this.status = status;
61     }
62
63
64     @Override
65     public String toString() {
66         return "OAMContext {" +
67                 "rpcName=" + rpcName +
68                 ", commonHeader=" + commonHeader +
69                 ", status=" + status +
70                 '}';
71     }
72 }