2 * //******************************************************************
4 * // Copyright 2016 Samsung Electronics All Rights Reserved.
6 * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
12 * // http://www.apache.org/licenses/LICENSE-2.0
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.
20 * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
22 package org.iotivity.cloud.base.protocols.coap;
24 import org.iotivity.cloud.base.protocols.enums.RequestMethod;
25 import org.iotivity.cloud.base.protocols.enums.ResponseStatus;
27 public class CoapRequest extends CoapMessage {
28 private RequestMethod mRequestMethod;
30 public CoapRequest(RequestMethod requestMethod) {
31 mRequestMethod = requestMethod;
34 public CoapRequest(int code) {
37 mRequestMethod = RequestMethod.GET;
40 mRequestMethod = RequestMethod.POST;
43 mRequestMethod = RequestMethod.PUT;
46 mRequestMethod = RequestMethod.DELETE;
49 throw new IllegalArgumentException("Invalid CoapRequest code");
54 public int getCode() {
55 switch (mRequestMethod) {
72 public RequestMethod getMethod() {
73 return mRequestMethod;
76 // This request object does not support response status
78 public ResponseStatus getStatus() {
79 return ResponseStatus.METHOD_NOT_ALLOWED;