Uses of Interface
org.jboss.netty.handler.ipfilter.IpFilterRule
-
Packages that use IpFilterRule Package Description org.jboss.netty.handler.ipfilter Implementation of a Ip based Filter handlers.
-
-
Uses of IpFilterRule in org.jboss.netty.handler.ipfilter
Classes in org.jboss.netty.handler.ipfilter that implement IpFilterRule Modifier and Type Class Description class
IpSubnetFilterRule
Ip V4 and Ip V6 filter rule.
Note that mix of IPV4 and IPV6 is allowed but it is not recommended.class
IpV4SubnetFilterRule
IpV4 only Filter Ruleclass
PatternRule
The Class PatternRule represents an IP filter rule using string patterns.Methods in org.jboss.netty.handler.ipfilter that return IpFilterRule Modifier and Type Method Description IpFilterRule
IpFilterRuleHandler. get(int index)
Returns the element at the specified position in this listIpFilterRule
IpFilterRuleHandler. remove(int index)
Removes the element at the specified position in this listIpFilterRule
IpFilterRuleHandler. set(int index, IpFilterRule ipFilterRule)
Replaces the element at the specified position in this list with the specified elementMethods in org.jboss.netty.handler.ipfilter with parameters of type IpFilterRule Modifier and Type Method Description void
IpFilterRuleHandler. add(int index, IpFilterRule ipFilterRule)
Add an ipFilterRule in the list at the specified position (shifting to the right other elements)void
IpFilterRuleHandler. add(IpFilterRule ipFilterRule)
Add an ipFilterRule in the list at the endboolean
IpFilterRuleHandler. addIfAbsent(IpFilterRule ipFilterRule)
Append the element if not present.boolean
IpFilterRuleHandler. contains(IpFilterRule ipFilterRule)
Returns true if this list contains the specified elementvoid
IpFilterRuleHandler. remove(IpFilterRule ipFilterRule)
Remove the ipFilterRule from the listIpFilterRule
IpFilterRuleHandler. set(int index, IpFilterRule ipFilterRule)
Replaces the element at the specified position in this list with the specified elementMethod parameters in org.jboss.netty.handler.ipfilter with type arguments of type IpFilterRule Modifier and Type Method Description void
IpFilterRuleHandler. addAll(int index, Collection<IpFilterRule> c)
Inserts all of the elements in the specified collection into this list, starting at the specified position.void
IpFilterRuleHandler. addAll(Collection<IpFilterRule> c)
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.int
IpFilterRuleHandler. addAllAbsent(Collection<IpFilterRule> c)
Append the element if not present.boolean
IpFilterRuleHandler. containsAll(Collection<IpFilterRule> c)
Returns true if this list contains all of the elements of the specified collectionvoid
IpFilterRuleHandler. removeAll(Collection<IpFilterRule> c)
Removes from this list all of its elements that are contained in the specified collectionvoid
IpFilterRuleHandler. retainAll(Collection<IpFilterRule> c)
Retains only the elements in this list that are contained in the specified collectionConstructor parameters in org.jboss.netty.handler.ipfilter with type arguments of type IpFilterRule Constructor Description IpFilterRuleHandler(List<IpFilterRule> newList)
Constructor from a new list of IpFilterRule
-