Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / EnvProps.java
index 0e645da..b2cebb5 100644 (file)
@@ -24,57 +24,57 @@ package org.onap.aaf.misc.env;
 import java.util.Map;\r
 \r
 public interface EnvProps extends Env {\r
-       public interface EnvProperty {\r
-               public String getProperty(String input);\r
-       };\r
+    public interface EnvProperty {\r
+        public String getProperty(String input);\r
+    };\r
 \r
-       /**\r
-        * Obtain a Property (String) based on a Key.  Implementor decides how\r
-        * that works, i.e. from a complex set of Configurations, or just \r
-        * "System" (Java standard)\r
-        \r
-        * @param key\r
-        * @return APIException\r
-        */\r
-       public String getProperty(String key);\r
+    /**\r
+     * Obtain a Property (String) based on a Key.  Implementor decides how\r
+     * that works, i.e. from a complex set of Configurations, or just \r
+     * "System" (Java standard)\r
+     * \r
+     * @param key\r
+     * @return APIException\r
+     */\r
+    public String getProperty(String key);\r
 \r
-       /**\r
-        * Obtain a Property (String) based on a Key.  Implementor decides how\r
-        * that works, i.e. from a complex set of Configurations, or just \r
-        * "System" (Java standard)\r
-        \r
-        * If Property Value is null, then default will be used.\r
-        * @param key\r
-        * @return APIException\r
-        */\r
-       public String getProperty(String tag, String defaultValue);\r
+    /**\r
+     * Obtain a Property (String) based on a Key.  Implementor decides how\r
+     * that works, i.e. from a complex set of Configurations, or just \r
+     * "System" (Java standard)\r
+     * \r
+     * If Property Value is null, then default will be used.\r
+     * @param key\r
+     * @return APIException\r
+     */\r
+    public String getProperty(String tag, String defaultValue);\r
 \r
-       /**\r
-        * Set a Property (String) based on a Key accessible to all in Env.  Implementor decides how\r
-        * that works, i.e. from a complex set of Configurations, or just \r
-        * "System" (Java standard)\r
-        \r
-        * @param key\r
-        * @return APIException\r
-        */\r
-       public String setProperty(String key, String value);\r
-       \r
-       /**\r
-        * Get the SubProperties based on key.\r
-        \r
-        * use "false" to remove prefix, "true" to leave prefix in.\r
-        \r
-        * @param key\r
-        * @return APIException\r
-        * Given a known property set (or in this case, properties starting with key), \r
-        * return map of all properties with appropriate key names\r
-        */\r
-       public Map<String, String> getSubProperties(String key, boolean includePrefix);\r
+    /**\r
+     * Set a Property (String) based on a Key accessible to all in Env.  Implementor decides how\r
+     * that works, i.e. from a complex set of Configurations, or just \r
+     * "System" (Java standard)\r
+     * \r
+     * @param key\r
+     * @return APIException\r
+     */\r
+    public String setProperty(String key, String value);\r
+    \r
+    /**\r
+     * Get the SubProperties based on key.\r
+     * \r
+     * use "false" to remove prefix, "true" to leave prefix in.\r
+     * \r
+     * @param key\r
+     * @return APIException\r
+     * Given a known property set (or in this case, properties starting with key), \r
+     * return map of all properties with appropriate key names\r
+     */\r
+    public Map<String, String> getSubProperties(String key, boolean includePrefix);\r
 \r
-       /**\r
-        * Get all of the properties in the Environment\r
-        * @return\r
-        */\r
-       public Map<String, String> getProperties();\r
+    /**\r
+     * Get all of the properties in the Environment\r
+     * @return\r
+     */\r
+    public Map<String, String> getProperties();\r
 \r
 }\r