Interface FilteredIP
-
- All Superinterfaces:
java.lang.Cloneable,net.anotheria.asg.data.DataObject,net.anotheria.util.sorter.IComparable
- All Known Implementing Classes:
FilteredIPDocument
public interface FilteredIP extends net.anotheria.asg.data.DataObject, net.anotheria.util.sorter.IComparable
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPROP_ALLOWANCEConstant property name for "allowance" for internal storage and queries.static java.lang.StringPROP_IDConstant property name for "id" for internal storage and queries.static java.lang.StringPROP_IP_ADDRESSConstant property name for "ipAddress" for internal storage and queries.static java.lang.StringPROP_MASKConstant property name for "mask" for internal storage and queries.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAllowance()Returns the value of the allowance attribute.java.lang.StringgetIpAddress()Returns the value of the ipAddress attribute.intgetMask()Returns the value of the mask attribute.voidsetAllowance(int value)Sets the value of the allowance attribute.voidsetIpAddress(java.lang.String value)Sets the value of the ipAddress attribute.voidsetMask(int value)Sets the value of the mask attribute.
-
-
-
Field Detail
-
PROP_ID
static final java.lang.String PROP_ID
Constant property name for "id" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_IP_ADDRESS
static final java.lang.String PROP_IP_ADDRESS
Constant property name for "ipAddress" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_MASK
static final java.lang.String PROP_MASK
Constant property name for "mask" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_ALLOWANCE
static final java.lang.String PROP_ALLOWANCE
Constant property name for "allowance" for internal storage and queries.- See Also:
- Constant Field Values
-
-
Method Detail
-
getIpAddress
java.lang.String getIpAddress()
Returns the value of the ipAddress attribute.
-
setIpAddress
void setIpAddress(java.lang.String value)
Sets the value of the ipAddress attribute.
-
getMask
int getMask()
Returns the value of the mask attribute.
-
setMask
void setMask(int value)
Sets the value of the mask attribute.
-
getAllowance
int getAllowance()
Returns the value of the allowance attribute.
-
setAllowance
void setAllowance(int value)
Sets the value of the allowance attribute.
-
-