d6d958256f21292734cb208dad1c98c01612b428
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / gates / IGateID.java
1 /**
2  @header@
3  */
4 package org.pcmm.gates;
5
6 import org.pcmm.base.IPCMMBaseObject;
7
8 /**
9  *
10  */
11 public interface IGateID extends IPCMMBaseObject {
12     static final short LENGTH = 8;
13     static final byte SNUM = 4;
14     static final byte STYPE = 1;
15
16     void setGateID(int gateID);
17
18     int getGateID();
19 }