Lines Matching refs:name
65 public Object lookup(Name name) throws NamingException {
67 return ctx.lookup(name);
70 public Object lookup(String name) throws NamingException {
72 return ctx.lookup(name);
75 public void bind(Name name, Object newObj) throws NamingException {
77 ctx.bind(name, newObj);
80 public void bind(String name, Object newObj) throws NamingException {
82 ctx.bind(name, newObj);
85 public void rebind(Name name, Object newObj) throws NamingException {
87 ctx.rebind(name, newObj);
89 public void rebind(String name, Object newObj) throws NamingException {
91 ctx.rebind(name, newObj);
94 public void unbind(Name name) throws NamingException {
96 ctx.unbind(name);
98 public void unbind(String name) throws NamingException {
100 ctx.unbind(name);
103 public void rename(Name name, Name newName) throws NamingException {
105 ctx.rename(name, newName);
107 public void rename(String name, String newName) throws NamingException {
109 ctx.rename(name, newName);
112 public NamingEnumeration list(Name name) throws NamingException {
114 return ctx.list(name);
116 public NamingEnumeration list(String name) throws NamingException {
118 return ctx.list(name);
122 public NamingEnumeration listBindings(Name name)
126 return ctx.listBindings(name);
129 public NamingEnumeration listBindings(String name) throws NamingException {
131 return ctx.listBindings(name);
134 public void destroySubcontext(Name name) throws NamingException {
136 ctx.destroySubcontext(name);
138 public void destroySubcontext(String name) throws NamingException {
140 ctx.destroySubcontext(name);
143 public Context createSubcontext(Name name) throws NamingException {
145 return ctx.createSubcontext(name);
147 public Context createSubcontext(String name) throws NamingException {
149 return ctx.createSubcontext(name);
152 public Object lookupLink(Name name) throws NamingException {
154 return ctx.lookupLink(name);
156 public Object lookupLink(String name) throws NamingException {
158 return ctx.lookupLink(name);
161 public NameParser getNameParser(Name name) throws NamingException {
163 return ctx.getNameParser(name);
166 public NameParser getNameParser(String name) throws NamingException {
168 return ctx.getNameParser(name);
171 public Name composeName(Name name, Name prefix)
175 return ctx.composeName(name, prefix);
178 public String composeName(String name, String prefix)
181 return ctx.composeName(name, prefix);
207 resolveToClass(Name name, Class<? extends Context> contextType)
219 return res.resolveToClass(name, contextType);
223 resolveToClass(String name, Class<? extends Context> contextType)
235 return res.resolveToClass(name, contextType);