Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / TransStore.java
index e9c1b39..5a8f762 100644 (file)
 package org.onap.aaf.misc.env;\r
 \r
 public interface TransStore extends Trans {\r
-       /**\r
-        * Returns the Slot assigned to the supplied name.\r
-        \r
-        * @param name\r
-        *                      The name of the Slot to acquire.\r
-        * @return\r
-        *                      The Slot associated with the supplied name.\r
-        */\r
-       public abstract Slot slot(String name);\r
-       \r
-       /**\r
-        * Put data into the right slot \r
-        */\r
-       public void put(Slot slot, Object value);\r
+    /**\r
+     * Returns the Slot assigned to the supplied name.\r
+     * \r
+     * @param name\r
+     *             The name of the Slot to acquire.\r
+     * @return\r
+     *             The Slot associated with the supplied name.\r
+     */\r
+    public abstract Slot slot(String name);\r
+    \r
+    /**\r
+     * Put data into the right slot \r
+     */\r
+    public void put(Slot slot, Object value);\r
 \r
-       /**\r
-        *  Get data from the right slot\r
-        *  \r
-        *  This will do a cast to the expected type derived from Default\r
-        */\r
-       public<T> T get(Slot slot, T deflt);\r
+    /**\r
+     *  Get data from the right slot\r
+     *  \r
+     *  This will do a cast to the expected type derived from Default\r
+     */\r
+    public<T> T get(Slot slot, T deflt);\r
 \r
-       /**\r
-        * Returns an Object from the Organizer's static state, or the Default if null\r
-        \r
-        * @param slot\r
-        *                      The StaticSlot to retrieve the data from.\r
-        * @return\r
-        *                      The Object located in the supplied StaticSlot of the Organizer's static state.\r
-        */\r
-       public abstract<T> T get(StaticSlot slot, T dflt);\r
-       \r
+    /**\r
+     * Returns an Object from the Organizer's static state, or the Default if null\r
+     * \r
+     * @param slot\r
+     *             The StaticSlot to retrieve the data from.\r
+     * @return\r
+     *             The Object located in the supplied StaticSlot of the Organizer's static state.\r
+     */\r
+    public abstract<T> T get(StaticSlot slot, T dflt);\r
+    \r
 }\r