FileDocCategorySizeDatePackage
SerialNameParser.javaAPI DocGlassfish v2 API2830Fri May 04 22:35:08 BST 2007com.sun.enterprise.naming

SerialNameParser

public class SerialNameParser extends Object implements NameParser

Fields Summary
static Properties
syntax
Constructors Summary
Methods Summary
public javax.naming.Nameparse(java.lang.String name)
Parse a name into its components.

param
name The non-null string name to parse.
return
A non-null parsed form of the name using the naming convention of this parser.
exception
NamingException If a naming exception was encountered.


     
        syntax.put("jndi.syntax.direction", "left_to_right");
        syntax.put("jndi.syntax.separator", "/");
        syntax.put("jndi.syntax.ignorecase", "false");
    
        return new CompoundName(name, syntax);