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 classIpSubnetFilterRuleIp V4 and Ip V6 filter rule.
Note that mix of IPV4 and IPV6 is allowed but it is not recommended.classIpV4SubnetFilterRuleIpV4 only Filter RuleclassPatternRuleThe Class PatternRule represents an IP filter rule using string patterns.Fields in org.jboss.netty.handler.ipfilter with type parameters of type IpFilterRule Modifier and Type Field Description private java.util.concurrent.CopyOnWriteArrayList<IpFilterRule>IpFilterRuleHandler. ipFilterRuleListList ofIpFilterRuleMethods in org.jboss.netty.handler.ipfilter that return IpFilterRule Modifier and Type Method Description IpFilterRuleIpFilterRuleHandler. get(int index)Returns the element at the specified position in this listIpFilterRuleIpFilterRuleHandler. remove(int index)Removes the element at the specified position in this listIpFilterRuleIpFilterRuleHandler. 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 voidIpFilterRuleHandler. add(int index, IpFilterRule ipFilterRule)Add an ipFilterRule in the list at the specified position (shifting to the right other elements)voidIpFilterRuleHandler. add(IpFilterRule ipFilterRule)Add an ipFilterRule in the list at the endbooleanIpFilterRuleHandler. addIfAbsent(IpFilterRule ipFilterRule)Append the element if not present.booleanIpFilterRuleHandler. contains(IpFilterRule ipFilterRule)Returns true if this list contains the specified elementvoidIpFilterRuleHandler. remove(IpFilterRule ipFilterRule)Remove the ipFilterRule from the listIpFilterRuleIpFilterRuleHandler. 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 voidIpFilterRuleHandler. addAll(int index, java.util.Collection<IpFilterRule> c)Inserts all of the elements in the specified collection into this list, starting at the specified position.voidIpFilterRuleHandler. addAll(java.util.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.intIpFilterRuleHandler. addAllAbsent(java.util.Collection<IpFilterRule> c)Append the element if not present.booleanIpFilterRuleHandler. containsAll(java.util.Collection<IpFilterRule> c)Returns true if this list contains all of the elements of the specified collectionvoidIpFilterRuleHandler. removeAll(java.util.Collection<IpFilterRule> c)Removes from this list all of its elements that are contained in the specified collectionvoidIpFilterRuleHandler. retainAll(java.util.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(java.util.List<IpFilterRule> newList)Constructor from a new list of IpFilterRule
-