Code style cleanup for prov authz and beans
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / authz / impl / ProvDataProvider.java
index 580fe99..0e8e206 100644 (file)
@@ -7,9 +7,9 @@
  * * 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
+ * *\r
  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
- * * \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
  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
  * *\r
  ******************************************************************************/\r
+\r
 package org.onap.dmaap.datarouter.authz.impl;\r
 \r
-/** Interface to access data about subscriptions and feeds.  A software component that \r
+/** Interface to access data about subscriptions and feeds.  A software component that\r
  * uses the <code>ProvAuthorizer</code> needs to supply an implementation of this interface.\r
  * @author J. F. Lucas\r
  *\r
  */\r
 public interface ProvDataProvider {\r
-       \r
-       /** Get the identity of the owner of a feed.\r
-        * \r
-        * @param feedId the feed ID of the feed whose owner is being looked up.\r
-        * @return the feed owner's identity\r
-        */\r
-       public String getFeedOwner(String feedId);\r
-       \r
-       /** Get the security classification of a feed.\r
-        * \r
-        * @param feedId the ID of the feed whose classification is being looked up.\r
-        * @return the classification of the feed.\r
-        */\r
-       public String getFeedClassification(String feedId);\r
-       \r
-       /** Get the identity of the owner of a feed\r
-        * \r
-        * @param subId the ID of the subscripition whose owner is being looked up.\r
-        * @return the subscription owner's identity.\r
-        */\r
-       public String getSubscriptionOwner(String subId);\r
 \r
-       /** Get the identity of the owner of a feed by group id -  Rally : US708115\r
-        * \r
-        * @param feedid, user the ID of the feed whose owner is being looked up.\r
-        * @return the feed owner's identity by group.\r
-        */\r
-       public String getGroupByFeedGroupId(String owner, String feedId);\r
-       \r
-       /** Get the identity of the owner of a sub by group id Rally : US708115\r
-        * \r
-        * @param subid, user the ID of the feed whose owner is being looked up.\r
-        * @return the feed owner's identity by group.\r
-        */\r
-       public String getGroupBySubGroupId(String owner, String subId);\r
+    /** Get the identity of the owner of a feed.\r
+     *\r
+     * @param feedId the feed ID of the feed whose owner is being looked up.\r
+     * @return the feed owner's identity\r
+     */\r
+    public String getFeedOwner(String feedId);\r
+\r
+    /** Get the security classification of a feed.\r
+     *\r
+     * @param feedId the ID of the feed whose classification is being looked up.\r
+     * @return the classification of the feed.\r
+     */\r
+    public String getFeedClassification(String feedId);\r
+\r
+    /** Get the identity of the owner of a feed.\r
+     *\r
+     * @param subId the ID of the subscripition whose owner is being looked up.\r
+     * @return the subscription owner's identity.\r
+     */\r
+    public String getSubscriptionOwner(String subId);\r
+\r
+    /** Get the identity of the owner of a feed by group id -  Rally : US708115.\r
+     *\r
+     * @param feedId user the ID of the feed whose owner is being looked up.\r
+     * @return the feed owner's identity by group.\r
+     */\r
+    public String getGroupByFeedGroupId(String owner, String feedId);\r
+\r
+    /** Get the identity of the owner of a sub by group id Rally : US708115.\r
+     *\r
+     * @param subId user the ID of the feed whose owner is being looked up.\r
+     *\r
+     * @return the feed owner's identity by group.\r
+     */\r
+    public String getGroupBySubGroupId(String owner, String subId);\r
 }\r