Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / model / AAIResourceKeys.java
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-package org.onap.aai.db.schema;
+package org.onap.aai.domain.model;
 
-public interface Named {
+import java.util.ArrayList;
+import java.util.List;
+
+public class AAIResourceKeys {
+       private List<AAIResourceKey> aaiResourceKey;
 
        /**
-        * Gets the name.
+        * Gets the aai resource key.
         *
-        * @return the name
+        * @return the aai resource key
         */
-       public String getName();
+       public List<AAIResourceKey> getAaiResourceKey() {
+               if (aaiResourceKey == null) { 
+                       aaiResourceKey = new ArrayList<AAIResourceKey>();
+               }
+               return aaiResourceKey;
+       }
 }