Package org.jboss.util

Examples of org.jboss.util.NotImplementedException


    *
    * @return the users description of the query
    */
   public String getDescription()
   {
      throw new NotImplementedException("getDescription");
   }
View Full Code Here


   public EJBContainer getEjbContainer(String ejbLink, Class businessIntf, String vfsContext)
   {
      // Make a reference
      EjbReference reference = new EjbReference(null, businessIntf.getName(), null);

      throw new NotImplementedException("@see Comments in " + MockDeploymentScope.class.getName());

   }
View Full Code Here

   @Override
   @Deprecated
   protected org.jboss.ejb3.proxy.factory.SessionProxyFactory getProxyFactory(LocalBinding binding)
   {
     throw new NotImplementedException("@Service container is using old Proxy mechanism");
   }
View Full Code Here

    * @deprecated Until @Service uses EJB3 Proxy
    */
   @Deprecated
   public RemoteProxyFactory getProxyFactoryForService(RemoteBinding binding)
   {
      throw new NotImplementedException(this + " is no longer using unsupported (legacy) proxy impl from ejb3-core");
   }
View Full Code Here

      return delegate.getMBeanInfo();
   }

   public Object createLocalProxy(Object id, LocalBinding binding) throws Exception
   {
      throw new NotImplementedException(this + " is using unsupported legacy Proxy implementation");
   }
View Full Code Here

   }

   @Deprecated
   public Object createRemoteProxy(Object id, RemoteBinding binding) throws Exception
   {
      throw new NotImplementedException(this + " is no longer using unsupported (legacy) proxy impl from ejb3-core");
   }
View Full Code Here

      }
   }

   private Object invokeLocalHomeMethod(MethodInfo info, Object[] args) throws Exception
   {
      throw new NotImplementedException("EJBTHREE-1641");
      //      Method unadvisedMethod = info.getUnadvisedMethod();
      //      if (unadvisedMethod.getName().startsWith("create"))
      //      {
      //         Class<?>[] initParameterTypes =
      //                 {};
View Full Code Here

      return this.createLocalProxy(id, this.getAnnotation(LocalBinding.class));
   }

   public Object createLocalProxy(Object id, LocalBinding binding) throws Exception
   {
      throw new NotImplementedException("EJBTHREE-1641");
      //      StatefulLocalProxyFactory factory = new StatefulLocalProxyFactory(this, binding);
      //      factory.init();
      //
      //      return factory.createProxyBusiness(id);
   }
View Full Code Here

      //      return factory.createProxyBusiness(id);
   }

   public Object createRemoteProxy(Object id, RemoteBinding binding) throws Exception
   {
      throw new NotImplementedException("EJBTHREE-1641");
      //      StatefulRemoteProxyFactory factory = new StatefulRemoteProxyFactory(this, binding);
      //      factory.init();
      //
      //      if (id != null)
      //         return factory.createProxyBusiness(id,null);
View Full Code Here

      }
   }

   public Object localHomeInvoke(Method method, Object[] args) throws Throwable
   {
      throw new NotImplementedException("EJBTHREE-1641");
//      if (method.getName().equals("create"))
//      {
//         LocalBinding binding = this.getAnnotation(LocalBinding.class);
//
//         // FIXME: why this binding? Could be another one. (there is only one local binding, but that's another bug)
View Full Code Here

TOP

Related Classes of org.jboss.util.NotImplementedException

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.