diff options
author | Jim Hahn <jrh3@att.com> | 2019-03-21 09:54:30 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-03-22 12:19:37 -0400 |
commit | a4b62b8f4da98eefe530e0fc11f6dafabe0019c2 (patch) | |
tree | 96f6acb9c49b9e4aa0d3c33dc805cf37b264f659 /models-pap/src/test/java | |
parent | 834851e6c460ef8a28f356a64fe7b85d8bbf9a55 (diff) |
Add models-pdp to models repo
Also changed supportedPolicyTypes to PfConceptKey.
Updated licenses.
Removed trailing whitespace from pom.
Provide default request id.
Rebased to fix merge conflict.
Added SupportedPolicyType class.
Renamed SupportedPolicyType to PolicyTypeIdent, and moved it to
models-base. Also updated models-pap to use it.
Deleted models-pdp Policy and replaced it with ToscaPolicy.
Updated test method name.
Change-Id: Id65f769c2f308c6b56e79978bd50b84f2e0b3d02
Issue-ID: POLICY-1542
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-pap/src/test/java')
-rw-r--r-- | models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpSubGroup.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpSubGroup.java b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpSubGroup.java index d2e5f2fcc..9af2f4e9d 100644 --- a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpSubGroup.java +++ b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpSubGroup.java @@ -27,7 +27,7 @@ import java.util.Arrays; import java.util.Map; import java.util.TreeMap; import org.junit.Test; -import org.onap.policy.models.base.PfConceptKey; +import org.onap.policy.models.base.keys.PolicyTypeIdent; /** * Test the copy constructor, as {@link TestModels} tests the other methods. @@ -66,8 +66,8 @@ public class TestPdpSubGroup { props.put("key-B", "value-B"); orig.setProperties(props); - PfConceptKey supp1 = new PfConceptKey("supp-A", "1.2"); - PfConceptKey supp2 = new PfConceptKey("supp-B", "3.4"); + PolicyTypeIdent supp1 = new PolicyTypeIdent("supp-A", "1.2"); + PolicyTypeIdent supp2 = new PolicyTypeIdent("supp-B", "3.4"); orig.setSupportedPolicyTypes(Arrays.asList(supp1, supp2)); assertEquals(orig.toString(), new PdpSubGroup(orig).toString()); |