Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / IOObjectifier.java
index e3e7430..70b4add 100644 (file)
@@ -25,30 +25,30 @@ import java.io.InputStream;
 import java.io.Reader;\r
 \r
 public interface IOObjectifier<T> extends Objectifier<T> {\r
-       /**\r
-        * Marshal to Object T from a Reader, using contents from Env as necessary.<p>\r
-        \r
-        * Implementations should use the {@link Env} to call "env.startXMLTime()" to mark\r
-        * XML time, since this is often a costly process.\r
-        *\r
-        * @param env\r
-        * @param input\r
-        * @return T\r
-        * @throws APIException\r
-        */\r
-       public abstract T objectify(Env env, Reader rdr) throws APIException;\r
-       \r
-       /**\r
-        * Marshal to Object T from an InputStream, using contents from Env as necessary.<p>\r
-        \r
-        * Implementations should use the {@link Env} to call "env.startXMLTime()" to mark\r
-        * XML time, since this is often a costly process.\r
-        *\r
-        * @param env\r
-        * @param input\r
-        * @return T\r
-        * @throws APIException\r
-        */\r
-       public abstract T objectify(Env env, InputStream is) throws APIException;\r
+    /**\r
+     * Marshal to Object T from a Reader, using contents from Env as necessary.<p>\r
+     * \r
+     * Implementations should use the {@link Env} to call "env.startXMLTime()" to mark\r
+     * XML time, since this is often a costly process.\r
+     *\r
+     * @param env\r
+     * @param input\r
+     * @return T\r
+     * @throws APIException\r
+     */\r
+    public abstract T objectify(Env env, Reader rdr) throws APIException;\r
+    \r
+    /**\r
+     * Marshal to Object T from an InputStream, using contents from Env as necessary.<p>\r
+     * \r
+     * Implementations should use the {@link Env} to call "env.startXMLTime()" to mark\r
+     * XML time, since this is often a costly process.\r
+     *\r
+     * @param env\r
+     * @param input\r
+     * @return T\r
+     * @throws APIException\r
+     */\r
+    public abstract T objectify(Env env, InputStream is) throws APIException;\r
 \r
 }\r