1 22 23 package org.objectweb.perseus.jndi; 24 25 import java.util.Properties ; 26 27 import javax.naming.CompoundName ; 28 import javax.naming.InvalidNameException ; 29 30 34 public class DottedName extends CompoundName { 35 36 static Properties syntax = new Properties (); 37 38 static { 39 syntax.put("jndi.syntax.direction", "left_to_right"); 40 syntax.put("jndi.syntax.separator", "."); 41 syntax.put("jndi.syntax.ignorecase", "false"); 42 } 43 44 public DottedName(String name) throws InvalidNameException { 45 super(name, syntax); 46 } 47 } 48 | Popular Tags |