Package org.jboss.messaging.util

Examples of org.jboss.messaging.util.NotYetImplementedException


   // Public --------------------------------------------------------

   public void deployTopic(String name) throws Exception
   {
      throw new NotYetImplementedException();
      //serverPeer.getDestinationManager().createTopic(name, null);
   }
View Full Code Here


      //serverPeer.getDestinationManager().createTopic(name, null);
   }

   public void deployQueue(String name) throws Exception
   {
      throw new NotYetImplementedException();
      //serverPeer.getDestinationManager().createQueue(name, null);
   }
View Full Code Here

   // Context implementation ----------------------------------------

   public Object lookup(Name name) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      }
   }

   public void bind(Name name, Object obj) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      internalBind(name, obj, false);
   }

   public void rebind(Name name, Object obj) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      internalBind(name, obj, true);
   }

   public void unbind(Name name) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      }
   }

   public void rename(Name oldName, Name newName) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      throw new NotYetImplementedException();
   }

   public void rename(String oldName, String newName) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      throw new NotYetImplementedException();
   }

   public NamingEnumeration list(Name name) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

      throw new NotYetImplementedException();
   }

   public NamingEnumeration list(String name) throws NamingException
   {
      throw new NotYetImplementedException();
   }
View Full Code Here

TOP

Related Classes of org.jboss.messaging.util.NotYetImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.