1 22 package org.jboss.ejb3.naming; 23 24 import javax.naming.*; 25 import java.util.Hashtable ; 26 27 32 public class BrainlessContext implements Context 33 { 34 public BrainlessContext() 35 { 36 super(); 37 } 38 39 public Object lookup(Name name) throws NamingException 40 { 41 throw new OperationNotSupportedException(); 42 } 43 44 public Object lookup(String name) throws NamingException 45 { 46 throw new OperationNotSupportedException(); 47 } 48 49 public void bind(Name name, Object obj) throws NamingException 50 { 51 throw new OperationNotSupportedException(); 52 } 53 54 public void bind(String name, Object obj) throws NamingException 55 { 56 throw new OperationNotSupportedException(); 57 } 58 59 public void rebind(Name name, Object obj) throws NamingException 60 { 61 throw new OperationNotSupportedException(); 62 } 63 64 public void rebind(String name, Object obj) throws NamingException 65 { 66 throw new OperationNotSupportedException(); 67 } 68 69 public void unbind(Name name) throws NamingException 70 { 71 throw new OperationNotSupportedException(); 72 } 73 74 public void unbind(String name) throws NamingException 75 { 76 throw new OperationNotSupportedException(); 77 } 78 79 public void rename(Name oldName, Name newName) throws NamingException 80 { 81 throw new OperationNotSupportedException(); 82 } 83 84 public void rename(String oldName, String newName) throws NamingException 85 { 86 throw new OperationNotSupportedException(); 87 } 88 89 public NamingEnumeration<NameClassPair> list(Name name) throws NamingException 90 { 91 throw new OperationNotSupportedException(); 92 } 93 94 public NamingEnumeration<NameClassPair> list(String name) throws NamingException 95 { 96 throw new OperationNotSupportedException(); 97 } 98 99 public NamingEnumeration<Binding> listBindings(Name name) throws NamingException 100 { 101 throw new OperationNotSupportedException(); 102 } 103 104 public NamingEnumeration<Binding> listBindings(String name) throws NamingException 105 { 106 throw new OperationNotSupportedException(); 107 } 108 109 public void destroySubcontext(Name name) throws NamingException 110 { 111 throw new OperationNotSupportedException(); 112 } 113 114 public void destroySubcontext(String name) throws NamingException 115 { 116 throw new OperationNotSupportedException(); 117 } 118 119 public Context createSubcontext(Name name) throws NamingException 120 { 121 throw new OperationNotSupportedException(); 122 } 123 124 public Context createSubcontext(String name) throws NamingException 125 { 126 throw new OperationNotSupportedException(); 127 } 128 129 public Object lookupLink(Name name) throws NamingException 130 { 131 throw new OperationNotSupportedException(); 132 } 133 134 public Object lookupLink(String name) throws NamingException 135 { 136 throw new OperationNotSupportedException(); 137 } 138 139 public NameParser getNameParser(Name name) throws NamingException 140 { 141 throw new OperationNotSupportedException(); 142 } 143 144 public NameParser getNameParser(String name) throws NamingException 145 { 146 throw new OperationNotSupportedException(); 147 } 148 149 public Name composeName(Name name, Name prefix) throws NamingException 150 { 151 throw new OperationNotSupportedException(); 152 } 153 154 public String composeName(String name, String prefix) throws NamingException 155 { 156 throw new OperationNotSupportedException(); 157 } 158 159 public Object addToEnvironment(String propName, Object propVal) throws NamingException 160 { 161 throw new OperationNotSupportedException(); 162 } 163 164 public Object removeFromEnvironment(String propName) throws NamingException 165 { 166 throw new OperationNotSupportedException(); 167 } 168 169 public Hashtable <?, ?> getEnvironment() throws NamingException 170 { 171 throw new OperationNotSupportedException(); 172 } 173 174 public void close() throws NamingException 175 { 176 throw new OperationNotSupportedException(); 177 } 178 179 public String getNameInNamespace() throws NamingException 180 { 181 throw new OperationNotSupportedException(); 182 } 183 } 184 | Popular Tags |