3fa25b56b4722b15c2e21ff919a656d170971a4a
[policy/apex-pdp.git] / core / core-infrastructure / src / main / java / org / onap / policy / apex / core / infrastructure / messaging / impl / ws / messageblock / RawMessageBlock.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.core.infrastructure.messaging.impl.ws.messageblock;
22
23 import java.nio.ByteBuffer;
24
25 import org.java_websocket.WebSocket;
26
27 /**
28  * A container for a raw message block and the connection on which it is handled.
29  *
30  * @author Sajeevan Achuthan (sajeevan.achuthan@ericsson.com)
31  */
32 public final class RawMessageBlock {
33     // The raw message
34     private final ByteBuffer message;
35
36     // The web socket on which the message is handled
37     private final WebSocket webSocket;
38
39     /**
40      * Constructor, instantiate the bean.
41      *
42      * @param message {@link ByteBuffer} message from the web socket
43      * @param webSocket {@link WebSocket} the web socket on which the message is handled
44      */
45     public RawMessageBlock(final ByteBuffer message, final WebSocket webSocket) {
46         this.message = message;
47         this.webSocket = webSocket;
48     }
49
50     /**
51      * A getter method for message.
52      *
53      * @return the message
54      */
55     public ByteBuffer getMessage() {
56         return message;
57     }
58
59     /**
60      * A getter method for the web socket.
61      *
62      * @return the web socket
63      */
64     public WebSocket getConn() {
65         return webSocket;
66     }
67 }