Fixed building of models, moved code into directory structure.
[packetcable.git] / protocol_plugins.packetcable / src / main / java / org / pcmm / gates / IGateID.java
diff --git a/protocol_plugins.packetcable/src/main/java/org/pcmm/gates/IGateID.java b/protocol_plugins.packetcable/src/main/java/org/pcmm/gates/IGateID.java
new file mode 100644 (file)
index 0000000..d6d9582
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ @header@
+ */
+package org.pcmm.gates;
+
+import org.pcmm.base.IPCMMBaseObject;
+
+/**
+ *
+ */
+public interface IGateID extends IPCMMBaseObject {
+    static final short LENGTH = 8;
+    static final byte SNUM = 4;
+    static final byte STYPE = 1;
+
+    void setGateID(int gateID);
+
+    int getGateID();
+}