Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / GeneratedTransferObject.java
diff --git a/opendaylight/sal/yang-prototype/code-generator/binding-model-api/src/main/java/org/opendaylight/controller/sal/binding/model/api/GeneratedTransferObject.java b/opendaylight/sal/yang-prototype/code-generator/binding-model-api/src/main/java/org/opendaylight/controller/sal/binding/model/api/GeneratedTransferObject.java
new file mode 100644 (file)
index 0000000..4bed98a
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.controller.sal.binding.model.api;
+
+import java.util.List;
+import java.util.Set;
+
+public interface GeneratedTransferObject extends Type {
+    
+    /**
+     * Returns Set of all Enumerator definitions associated with interface.
+     * 
+     * @return Set of all Enumerator definitions associated with interface.
+     */
+    public List<Enumeration> getEnumDefintions();
+    
+    public List<GeneratedProperty> getProperties();
+    
+    public List<GeneratedProperty> getEqualsIdentifiers();
+    
+    public List<GeneratedProperty> getHashCodeIdentifiers();
+    
+    public List<GeneratedProperty> getToStringIdentifiers();
+}