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.rdserver;
24 import java.net.InetSocketAddress;
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 import org.iotivity.cloud.util.Net;
32 public class ResourceDirectoryServer {
34 public static void main(String[] args) throws Exception {
36 System.out.println("-----RD SERVER-----");
37 String hostAddress = Net.getMyIpAddress();
38 if (hostAddress.equals("") == true) {
39 Logger.e("cannot find host address.");
43 if (args.length != 1) {
44 Logger.e("coap server port required");
48 ResourceManager resourceManager = null;
50 CoapServer coapServer = null;
52 coapServer = new CoapServer();
54 resourceManager = new ResourceManager();
56 coapServer.addHandler(resourceManager);
58 resourceManager.registerResource(new ResourceDirectoryResource());
61 .startServer(new InetSocketAddress(Integer.parseInt(args[0])));