6566676869707172
// Public -------------------------------------------------------- public void deployTopic(String name) throws Exception { throw new NotYetImplementedException(); //serverPeer.getDestinationManager().createTopic(name, null); }
7172737475767778
//serverPeer.getDestinationManager().createTopic(name, null); } public void deployQueue(String name) throws Exception { throw new NotYetImplementedException(); //serverPeer.getDestinationManager().createQueue(name, null); }
72737475767778
// Context implementation ---------------------------------------- public Object lookup(Name name) throws NamingException { throw new NotYetImplementedException(); }
106107108109110111112
} } public void bind(Name name, Object obj) throws NamingException { throw new NotYetImplementedException(); }
116117118119120121122
internalBind(name, obj, false); } public void rebind(Name name, Object obj) throws NamingException { throw new NotYetImplementedException(); }
126127128129130131132
internalBind(name, obj, true); } public void unbind(Name name) throws NamingException { throw new NotYetImplementedException(); }
152153154155156157158
} } public void rename(Name oldName, Name newName) throws NamingException { throw new NotYetImplementedException(); }
157158159160161162163
throw new NotYetImplementedException(); } public void rename(String oldName, String newName) throws NamingException { throw new NotYetImplementedException(); }
162163164165166167168
throw new NotYetImplementedException(); } public NamingEnumeration list(Name name) throws NamingException { throw new NotYetImplementedException(); }
167168169170171172173
throw new NotYetImplementedException(); } public NamingEnumeration list(String name) throws NamingException { throw new NotYetImplementedException(); }