Uses of Class
org.xins.common.text.ParseException

Packages that use ParseException
org.xins.client XINS client framework. 
org.xins.common.net Network-related utility classes. 
org.xins.common.servlet Servlet-related utility classes. 
org.xins.common.text Text-related utility classes. 
org.xins.common.xml XML-related classes. 
org.xins.server XINS server framework. 
 

Uses of ParseException in org.xins.client
 

Methods in org.xins.client that throw ParseException
 XINSCallResultData XINSCallResultParser.parse(byte[] xml)
          Parses the given XML string to create a XINSCallResultData object.
 

Uses of ParseException in org.xins.common.net
 

Methods in org.xins.common.net that throw ParseException
static int IPAddressUtils.ipToInt(String ip)
          Converts an IP address in the form a.b.c.d to an int.
 

Uses of ParseException in org.xins.common.servlet
 

Constructors in org.xins.common.servlet that throw ParseException
ServletRequestPropertyReader(HttpServletRequest request)
          Constructs a new ServletRequestPropertyReader for an HttpServletRequest.
 

Uses of ParseException in org.xins.common.text
 

Methods in org.xins.common.text that throw ParseException
 Perl5Pattern SimplePatternParser.parseSimplePattern(String simplePattern)
          Converts the specified simple pattern to a Perl 5 regular expression.
 

Uses of ParseException in org.xins.common.xml
 

Methods in org.xins.common.xml that throw ParseException
 void ElementBuilder.addXMLChild(String xmlChild)
          Adds a new child element.
 Element Element.getUniqueChildElement(String elementName)
          Gets the unique child of this element.
 Element ElementParser.parse(Reader in)
          Parses content of a character stream to create an XML Element object.
 

Uses of ParseException in org.xins.server
 

Methods in org.xins.server that throw ParseException
static AccessRule AccessRule.parseAccessRule(String descriptor)
          Parses the specified character string to construct a new AccessRule object.
 boolean AccessRule.match(String ip, String functionName)
          Determines if the specified IP address and function match this rule.
 Boolean AccessRule.isAllowed(String ip, String functionName)
          Determines if the specified IP address is allowed to access the specified function, returning a Boolean object or null.
 Boolean AccessRuleFile.isAllowed(String ip, String functionName)
          Determines if the specified IP address is allowed to access the specified function, returning a Boolean object or null.
 Boolean AccessRuleContainer.isAllowed(String ip, String functionName)
          Determines if the specified IP address is allowed to access the specified function.
static AccessRuleList AccessRuleList.parseAccessRuleList(String descriptor)
          Deprecated. Deprecated since XINS 1.3.0. Use AccessRuleList.parseAccessRuleList(String,int) instead.
static AccessRuleList AccessRuleList.parseAccessRuleList(String descriptor, int interval)
          Parses the specified character string to construct a new AccessRuleList object, with the specified watch interval for referenced files.
 boolean AccessRuleList.allow(String ip, String functionName)
          Deprecated. Deprecated since XINS 1.3.0. Use AccessRuleList.isAllowed(String,String) instead.
 Boolean AccessRuleList.isAllowed(String ip, String functionName)
          Determines if the specified IP address is allowed to access the specified function, returning a Boolean object or null.
static IPFilter IPFilter.parseIPFilter(String expression)
          Creates an IPFilter object for the specified filter expression.
 boolean IPFilter.match(String ipString)
          Determines if the specified IP address is authorized.
 

Constructors in org.xins.server that throw ParseException
AccessRuleFile(String descriptor, int interval)
          Constructs a new AccessRuleFile based on a descriptor and a file watch interval.
 



See http://www.xins.org/.