X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=datarouter-prov%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdatarouter%2Fauthz%2Fimpl%2FProvDataProvider.java;fp=datarouter-prov%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdatarouter%2Fauthz%2Fimpl%2FProvDataProvider.java;h=0e8e20663fa40d44897cffbc808ba16d97466add;hb=bc1df610cddfb558cf6bde90c269b4af59768648;hp=dca348a02c8d4cc824c7ad584212e7a49df18847;hpb=a60d80ff7bfae8a152c950486d9a1877628e13a4;p=dmaap%2Fdatarouter.git diff --git a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/authz/impl/ProvDataProvider.java b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/authz/impl/ProvDataProvider.java index dca348a0..0e8e2066 100644 --- a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/authz/impl/ProvDataProvider.java +++ b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/authz/impl/ProvDataProvider.java @@ -20,6 +20,7 @@ * * ECOMP is a trademark and service mark of AT&T Intellectual Property. * * ******************************************************************************/ + package org.onap.dmaap.datarouter.authz.impl; /** Interface to access data about subscriptions and feeds. A software component that @@ -43,23 +44,24 @@ public interface ProvDataProvider { */ public String getFeedClassification(String feedId); - /** Get the identity of the owner of a feed + /** Get the identity of the owner of a feed. * * @param subId the ID of the subscripition whose owner is being looked up. * @return the subscription owner's identity. */ public String getSubscriptionOwner(String subId); - /** Get the identity of the owner of a feed by group id - Rally : US708115 + /** Get the identity of the owner of a feed by group id - Rally : US708115. * - * @param feedId, user the ID of the feed whose owner is being looked up. + * @param feedId user the ID of the feed whose owner is being looked up. * @return the feed owner's identity by group. */ public String getGroupByFeedGroupId(String owner, String feedId); - /** Get the identity of the owner of a sub by group id Rally : US708115 + /** Get the identity of the owner of a sub by group id Rally : US708115. + * + * @param subId user the ID of the feed whose owner is being looked up. * - * @param subId, user the ID of the feed whose owner is being looked up. * @return the feed owner's identity by group. */ public String getGroupBySubGroupId(String owner, String subId);