Increase coverage for Env module
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / TransStore.java
index 6b50313..e9c1b39 100644 (file)
@@ -1,57 +1,57 @@
-/**
- * ============LICENSE_START====================================================
- * org.onap.aaf
- * ===========================================================================
- * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
- * ===========================================================================
- * 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.
- * ============LICENSE_END====================================================
- *
- */
-
-package org.onap.aaf.misc.env;
-
-public interface TransStore extends Trans {
-       /**
-        * Returns the Slot assigned to the supplied name.
-        * 
-        * @param name
-        *                      The name of the Slot to acquire.
-        * @return
-        *                      The Slot associated with the supplied name.
-        */
-       public abstract Slot slot(String name);
-       
-       /**
-        * Put data into the right slot 
-        */
-       public void put(Slot slot, Object value);
-
-       /**
-        *  Get data from the right slot
-        *  
-        *  This will do a cast to the expected type derived from Default
-        */
-       public<T> T get(Slot slot, T deflt);
-
-       /**
-        * Returns an Object from the Organizer's static state, or the Default if null
-        * 
-        * @param slot
-        *                      The StaticSlot to retrieve the data from.
-        * @return
-        *                      The Object located in the supplied StaticSlot of the Organizer's static state.
-        */
-       public abstract<T> T get(StaticSlot slot, T dflt);
-       
-}
+/**\r
+ * ============LICENSE_START====================================================\r
+ * org.onap.aaf\r
+ * ===========================================================================\r
+ * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.\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
+ * ============LICENSE_END====================================================\r
+ *\r
+ */\r
+\r
+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
+       /**\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