Adding UI extensibility
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / sync / entity / ObjectIdCollection.java
@@ -20,7 +20,7 @@
  *
  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  */
-package org.onap.aai.sparky.synchronizer.entity;
+package org.onap.aai.sparky.sync.entity;
 
 import java.util.Collection;
 import java.util.List;
@@ -34,21 +34,7 @@ public class ObjectIdCollection {
   protected ConcurrentHashMap<String, String> importedObjectIds =
       new ConcurrentHashMap<String, String>();
 
-  /**
-   * @return the importedObjectIds
-   */
-  public ConcurrentHashMap<String, String> getImportedObjectIds() {
-    return importedObjectIds;
-  }
-
-  /**
-   * @param importedObjectIds the importedObjectIds to set
-   */
-  public void setImportedObjectIds(ConcurrentHashMap<String, String> importedObjectIds) {
-    this.importedObjectIds = importedObjectIds;
-  }
-
-  public Collection<String> getImportedObjectIdsAsValues() {
+  public Collection<String> getImportedObjectIds() {
     return importedObjectIds.values();
   }