Clean up some SonarQube warnings (trailing whitespace, etc).
[platform/upstream/iotivity.git] / android / examples / simpleclient / src / main / java / org / iotivity / base / examples / simpleclient / StringConstants.java
1 package org.iotivity.base.examples.simpleclient;
2 /**
3  * StringConstant contains the simpleclient specific constant values.  To add another supported
4  * Resource or Interface type to this app, begin by adding the new strings here, and then
5  * find the places throughout the app where Resource-specific case switches occur, and add
6  * the newly-supported type there.
7  */
8 public interface StringConstants {
9     public static final String RESOURCE_URI0 = "/a/light";
10     public static final String RESOURCE_URI1 = "/a/light2";
11     public static final String OIC_CLIENT_JSON_DB_FILE =  "oic_svr_db_client.json";
12     public static final String CREATED_URI = "createduri";
13     public static final String STATE = "state";
14     public static final String NAME = "name";
15     public static final String POWER = "power";
16     public static final String MESSAGE = "message";
17 }