Update license header in appc client-lib files
[appc.git] / appc-client / client-lib / src / main / java / org / onap / appc / client / impl / core / MessageContext.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  * 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  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.client.impl.core;
25
26 /** Helper class for wrapping request/response information.
27  */
28 public class MessageContext {
29
30     /**
31      * valid values of type are response/error
32      */
33     private String type;
34
35     /**
36      * RPC name
37      */
38     private String rpc;
39
40     /**
41      * correlation ID
42      */
43     private String correlationID;
44
45     /**
46      * partitioner for message bus usage
47      */
48     private String partitioner;
49
50
51     public String getRpc() {
52         return rpc;
53     }
54
55     public void setRpc(String rpc) {
56         this.rpc = rpc;
57     }
58
59     public String getCorrelationID() {
60         return correlationID;
61     }
62
63     public void setCorrelationID(String correlationID) {
64         this.correlationID = correlationID;
65     }
66
67     public String getPartiton() {
68         return partitioner;
69     }
70
71     public void setPartiton(String partitioner) {
72         this.partitioner = partitioner;
73     }
74
75     public void setType(String type){
76         this.type = type;
77     }
78
79     public String getType(){
80         return type;
81     }
82
83
84 }