diff options
author | mojahidi <mojahidul.islam@amdocs.com> | 2018-07-19 12:35:31 +0530 |
---|---|---|
committer | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-07-30 10:03:24 +0000 |
commit | a8480d1fec5b5696be04eb887f4cbed6b56238be (patch) | |
tree | 59f3e71a9f780e3aee6519cfda4080a4ef356729 /catalog-model/src | |
parent | 734d54df49905998d1952a8a3b1a5caf38a05fa0 (diff) |
Add support for workflowId and workflowVersionId
Enhance operation data model and APIs to support workflowId and workflowVersionId
Change-Id: Ib8772027a3e0147ae0bb59811a9b31fe46975ac6
Issue-ID: SDC-1535
Signed-off-by: mojahidi <mojahidul.islam@amdocs.com>
Diffstat (limited to 'catalog-model/src')
-rw-r--r-- | catalog-model/src/main/java/org/openecomp/sdc/be/model/Resource.java | 11 | ||||
-rw-r--r-- | catalog-model/src/test/java/org/openecomp/sdc/be/model/ResourceTest.java | 22 |
2 files changed, 0 insertions, 33 deletions
diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/Resource.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/Resource.java index e15f1159ba..766cae4432 100644 --- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/Resource.java +++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/Resource.java @@ -47,8 +47,6 @@ public class Resource extends Component { private List<String> defaultCapabilities; - private Map<String, InterfaceOperationDataDefinition> interfaceOperations; - public Resource() { super(new ResourceMetadataDefinition()); this.getComponentMetadataDefinition().getMetadataDataDefinition().setComponentType(ComponentTypeEnum.RESOURCE); @@ -152,14 +150,6 @@ public class Resource extends Component { .setLicenseType(licenseType); } - public Map<String, InterfaceOperationDataDefinition> getInterfaceOperations() { - return interfaceOperations; - } - - public void setInterfaceOperations(Map<String, InterfaceOperationDataDefinition> interfaceOperations) { - this.interfaceOperations = interfaceOperations; - } - @Override public int hashCode() { final int prime = 31; @@ -214,7 +204,6 @@ public class Resource extends Component { return false; } else if (!properties.equals(other.properties)) return false; - return super.equals(obj); } diff --git a/catalog-model/src/test/java/org/openecomp/sdc/be/model/ResourceTest.java b/catalog-model/src/test/java/org/openecomp/sdc/be/model/ResourceTest.java index cf4ee08043..2ecb4b444c 100644 --- a/catalog-model/src/test/java/org/openecomp/sdc/be/model/ResourceTest.java +++ b/catalog-model/src/test/java/org/openecomp/sdc/be/model/ResourceTest.java @@ -222,28 +222,6 @@ public class ResourceTest extends ModelConfDependentTest{ @Test - public void testGetInterfaceOperations() throws Exception { - Resource testSubject; - Map<String, InterfaceOperationDataDefinition> result; - - // default test - testSubject = createTestSubject(); - result = testSubject.getInterfaceOperations(); - } - - - @Test - public void testSetInterfaceOperations() throws Exception { - Resource testSubject; - Map<String, InterfaceOperationDataDefinition> interfaceOperations = null; - - // default test - testSubject = createTestSubject(); - testSubject.setInterfaceOperations(interfaceOperations); - } - - - @Test public void testHashCode() throws Exception { Resource testSubject; int result; |