Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / android / android_api / base / src / main / java / org / iotivity / base / PlatformConfig.java
index 70d9df3..4ffacd4 100644 (file)
@@ -1,69 +1,69 @@
-/*\r
- * //******************************************************************\r
- * //\r
- * // Copyright 2015 Intel Corporation.\r
- * //\r
- * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
- * //\r
- * // Licensed under the Apache License, Version 2.0 (the "License");\r
- * // you may not use this file except in compliance with the License.\r
- * // You may obtain a copy of the License at\r
- * //\r
- * //      http://www.apache.org/licenses/LICENSE-2.0\r
- * //\r
- * // Unless required by applicable law or agreed to in writing, software\r
- * // distributed under the License is distributed on an "AS IS" BASIS,\r
- * // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * // See the License for the specific language governing permissions and\r
- * // limitations under the License.\r
- * //\r
- * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
- */\r
-\r
-package org.iotivity.base;\r
-\r
-import android.content.Context;\r
-\r
-/**\r
- * Data structure to provide the configuration.\r
- */\r
-public class PlatformConfig {\r
-\r
-    private Context mContext;\r
-    private ServiceType mServiceType;\r
-    private ModeType mModeType;\r
-    private String mIpAddress;\r
-    private int mPort;\r
-    private QualityOfService mQualityOfService;\r
+/*
+ * //******************************************************************
+ * //
+ * // Copyright 2015 Intel Corporation.
+ * //
+ * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+ * //
+ * // Licensed under the Apache License, Version 2.0 (the "License");
+ * // you may not use this file except in compliance with the License.
+ * // You may obtain a copy of the License at
+ * //
+ * //      http://www.apache.org/licenses/LICENSE-2.0
+ * //
+ * // Unless required by applicable law or agreed to in writing, software
+ * // distributed under the License is distributed on an "AS IS" BASIS,
+ * // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * // See the License for the specific language governing permissions and
+ * // limitations under the License.
+ * //
+ * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+ */
+
+package org.iotivity.base;
+
+import android.content.Context;
+
+/**
+ * Data structure to provide the configuration.
+ */
+public class PlatformConfig {
+
+    private Context mContext;
+    private ServiceType mServiceType;
+    private ModeType mModeType;
+    private String mIpAddress;
+    private int mPort;
+    private QualityOfService mQualityOfService;
     private String mSvrDbPath; //TODO: Instead of SVRDB file, it should be Persistent Storage.
                               //this is only for 0.9.2
-\r
-    /**\r
-     * @param context          app context\r
-     * @param serviceType      indicate IN_PROC or OUT_OF_PROC\r
-     * @param modeType         indicate whether we want to do server, client or both\r
-     * @param ipAddress        ip address of server\r
-     *                         if you specify 0.0.0.0 : it listens on any interface\r
-     * @param port             port of server\r
-     *                         if you specifiy 0 : next available random port is used\r
-     *                         if you specify 5683 : client discovery can work even if they don't\r
-     *                         specify port\r
-     * @param qualityOfService quality of service\r
+
+    /**
+     * @param context          app context
+     * @param serviceType      indicate IN_PROC or OUT_OF_PROC
+     * @param modeType         indicate whether we want to do server, client or both
+     * @param ipAddress        ip address of server
+     *                         if you specify 0.0.0.0 : it listens on any interface
+     * @param port             port of server
+     *                         if you specifiy 0 : next available random port is used
+     *                         if you specify 5683 : client discovery can work even if they don't
+     *                         specify port
+     * @param qualityOfService quality of service
      * @param dbPath           Persistant storage file for SVR Database.
-     */\r
-    public PlatformConfig(Context context,\r
-                          ServiceType serviceType,\r
-                          ModeType modeType,\r
-                          String ipAddress,\r
-                          int port,\r
+     */
+    public PlatformConfig(Context context,
+                          ServiceType serviceType,
+                          ModeType modeType,
+                          String ipAddress,
+                          int port,
                           QualityOfService qualityOfService,
                           String dbPath) {
-        this.mContext = context;\r
-        this.mServiceType = serviceType;\r
-        this.mModeType = modeType;\r
-        this.mIpAddress = ipAddress;\r
-        this.mPort = port;\r
-        this.mQualityOfService = qualityOfService;\r
+        this.mContext = context;
+        this.mServiceType = serviceType;
+        this.mModeType = modeType;
+        this.mIpAddress = ipAddress;
+        this.mPort = port;
+        this.mQualityOfService = qualityOfService;
         this.mSvrDbPath = dbPath;
     }
 
@@ -87,33 +87,33 @@ public class PlatformConfig {
                           int port,
                           QualityOfService qualityOfService) {
         this(context,serviceType,modeType,ipAddress,port,qualityOfService, "");
-    }\r
-\r
-    public Context getContext() {\r
-        return mContext;\r
-    }\r
-\r
-    public ServiceType getServiceType() {\r
-        return mServiceType;\r
-    }\r
-\r
-    public ModeType getModeType() {\r
-        return mModeType;\r
-    }\r
-\r
-    public String getIpAddress() {\r
-        return mIpAddress;\r
-    }\r
-\r
-    public int getPort() {\r
-        return mPort;\r
-    }\r
-\r
-    public QualityOfService getQualityOfService() {\r
-        return mQualityOfService;\r
+    }
+
+    public Context getContext() {
+        return mContext;
+    }
+
+    public ServiceType getServiceType() {
+        return mServiceType;
+    }
+
+    public ModeType getModeType() {
+        return mModeType;
+    }
+
+    public String getIpAddress() {
+        return mIpAddress;
+    }
+
+    public int getPort() {
+        return mPort;
+    }
+
+    public QualityOfService getQualityOfService() {
+        return mQualityOfService;
     }
 
     public String getSvrDbPath() {
         return mSvrDbPath;
-    }\r
-}\r
+    }
+}