Fix PUT and Observe relay on cloud stack
[platform/upstream/iotivity.git] / cloud / resourcedirectory / src / main / java / org / iotivity / cloud / rdserver / ResourceDirectoryServer.java
1 /*
2  * //******************************************************************
3  * //
4  * // Copyright 2016 Samsung Electronics All Rights Reserved.
5  * //
6  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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  * //
20  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21  */
22 package org.iotivity.cloud.rdserver;
23
24 import java.net.InetSocketAddress;
25
26 import org.iotivity.cloud.base.CoapServer;
27 import org.iotivity.cloud.base.ResourceManager;
28 import org.iotivity.cloud.rdserver.resources.ResourceDirectoryResource;
29 import org.iotivity.cloud.util.Logger;
30
31 public class ResourceDirectoryServer {
32
33     public static void main(String[] args) throws Exception {
34
35         System.out.println("-----RD SERVER-----");
36
37         if (args.length != 1) {
38             Logger.e("coap server port required");
39             return;
40         }
41
42         ResourceManager resourceManager = null;
43
44         CoapServer coapServer = null;
45
46         coapServer = new CoapServer();
47
48         resourceManager = new ResourceManager();
49
50         coapServer.addHandler(resourceManager);
51
52         resourceManager.registerResource(new ResourceDirectoryResource());
53
54         coapServer
55                 .startServer(new InetSocketAddress(Integer.parseInt(args[0])));
56     }
57
58 }