diff options
author | Liam Fallon <liam.fallon@est.tech> | 2019-04-03 20:11:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-03 20:11:58 +0000 |
commit | 09c5d18a9e3b2ae2958d2762bd4277499611d5ec (patch) | |
tree | 9611609b55915261177c7f285b79580cdd40dc62 /models-tosca/src/main | |
parent | 44d88722bf59f9d39b54a1aac3f59def61133b29 (diff) | |
parent | defa996aa95c11a6252604498a1e775134c34f2e (diff) |
Merge "Add impl of more PDP persistence"
Diffstat (limited to 'models-tosca/src/main')
-rw-r--r-- | models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/provider/AuthorativeToscaProvider.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/provider/AuthorativeToscaProvider.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/provider/AuthorativeToscaProvider.java index d0127d65f..2b6c25e7a 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/provider/AuthorativeToscaProvider.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/provider/AuthorativeToscaProvider.java @@ -179,6 +179,21 @@ public class AuthorativeToscaProvider { * @return the policies found * @throws PfModelException on errors getting policies */ + public ToscaServiceTemplate getPolicies4PolicyType(@NonNull final PfDao dao, @NonNull final String policyTypeName, + final String policyTypeVersion) throws PfModelException { + return null; + } + + /** + * Get policies for a policy type name. + * + * @param dao the DAO to use to access the database + * @param policyTypeName the name of the policy type for which to get policies + * @param policyTypeVersion the version of the policy type, null returns all versions of deployed policies for + * policy types + * @return the policies found + * @throws PfModelException on errors getting policies + */ public List<ToscaPolicy> getPolicyList4PolicyType(@NonNull final PfDao dao, @NonNull final String policyTypeName, final String policyTypeVersion) throws PfModelException { return new ArrayList<>(); |