Changed to unmaintained
[appc.git] / appc-oam / appc-oam-bundle / src / main / java / org / onap / appc / oam / messageadapter / OAMContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * ================================================================================
9  * Modifications (C) 2018 Ericsson
10  * =============================================================================
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  * 
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  * 
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * 
23  * ============LICENSE_END=========================================================
24  */
25
26 package org.onap.appc.oam.messageadapter;
27
28 import org.opendaylight.yang.gen.v1.org.onap.appc.oam.rev170303.common.header.CommonHeader;
29 import org.opendaylight.yang.gen.v1.org.onap.appc.oam.rev170303.status.Status;
30 import org.onap.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 }