You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ha...@apache.org on 2002/03/06 18:53:46 UTC

cvs commit: jakarta-commons-sandbox/altrmi/src/java/org/apache/commons/altrmi/client/impl/naming AltrmiContext.java

hammant     02/03/06 09:53:46

  Added:       altrmi/src/java/org/apache/commons/altrmi/client/impl/naming
                        AltrmiContext.java
  Log:
  start of jndi
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/altrmi/src/java/org/apache/commons/altrmi/client/impl/naming/AltrmiContext.java
  
  Index: AltrmiContext.java
  ===================================================================
  
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE.txt file.
   */
  package org.apache.commons.altrmi.client.impl.naming;
  
  
  
  import javax.naming.Context;
  import javax.naming.Name;
  import javax.naming.NamingException;
  import javax.naming.NamingEnumeration;
  import javax.naming.NameParser;
  
  import java.util.Hashtable;
  
  
  /**
   * Class AltrmiContext
   *
   *
   * @author Paul Hammant <a href="mailto:Paul_Hammant@yahoo.com">Paul_Hammant@yahoo.com</a>
   * @version $Revision: 1.1 $
   */
  public class AltrmiContext implements Context {
  
      //TODO - It all!
  
      /**
       * Method lookup
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Object lookup(Name name) throws NamingException {
          return null;
      }
  
      /**
       * Method lookup
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Object lookup(String name) throws NamingException {
          return null;
      }
  
      /**
       * Method bind
       *
       *
       * @param name
       * @param obj
       *
       * @throws NamingException
       *
       */
      public void bind(Name name, Object obj) throws NamingException {}
  
      /**
       * Method bind
       *
       *
       * @param name
       * @param obj
       *
       * @throws NamingException
       *
       */
      public void bind(String name, Object obj) throws NamingException {}
  
      /**
       * Method rebind
       *
       *
       * @param name
       * @param obj
       *
       * @throws NamingException
       *
       */
      public void rebind(Name name, Object obj) throws NamingException {}
  
      /**
       * Method rebind
       *
       *
       * @param name
       * @param obj
       *
       * @throws NamingException
       *
       */
      public void rebind(String name, Object obj) throws NamingException {}
  
      /**
       * Method unbind
       *
       *
       * @param name
       *
       * @throws NamingException
       *
       */
      public void unbind(Name name) throws NamingException {}
  
      /**
       * Method unbind
       *
       *
       * @param name
       *
       * @throws NamingException
       *
       */
      public void unbind(String name) throws NamingException {}
  
      /**
       * Method rename
       *
       *
       * @param oldName
       * @param newName
       *
       * @throws NamingException
       *
       */
      public void rename(Name oldName, Name newName) throws NamingException {}
  
      /**
       * Method rename
       *
       *
       * @param oldName
       * @param newName
       *
       * @throws NamingException
       *
       */
      public void rename(String oldName, String newName) throws NamingException {}
  
      /**
       * Method list
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public NamingEnumeration list(Name name) throws NamingException {
          return null;
      }
  
      /**
       * Method list
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public NamingEnumeration list(String name) throws NamingException {
          return null;
      }
  
      /**
       * Method listBindings
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public NamingEnumeration listBindings(Name name) throws NamingException {
          return null;
      }
  
      /**
       * Method listBindings
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public NamingEnumeration listBindings(String name) throws NamingException {
          return null;
      }
  
      /**
       * Method destroySubcontext
       *
       *
       * @param name
       *
       * @throws NamingException
       *
       */
      public void destroySubcontext(Name name) throws NamingException {}
  
      /**
       * Method destroySubcontext
       *
       *
       * @param name
       *
       * @throws NamingException
       *
       */
      public void destroySubcontext(String name) throws NamingException {}
  
      /**
       * Method createSubcontext
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Context createSubcontext(Name name) throws NamingException {
          return null;
      }
  
      /**
       * Method createSubcontext
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Context createSubcontext(String name) throws NamingException {
          return null;
      }
  
      /**
       * Method lookupLink
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Object lookupLink(Name name) throws NamingException {
          return null;
      }
  
      /**
       * Method lookupLink
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Object lookupLink(String name) throws NamingException {
          return null;
      }
  
      /**
       * Method getNameParser
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public NameParser getNameParser(Name name) throws NamingException {
          return null;
      }
  
      /**
       * Method getNameParser
       *
       *
       * @param name
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public NameParser getNameParser(String name) throws NamingException {
          return null;
      }
  
      /**
       * Method composeName
       *
       *
       * @param name
       * @param prefix
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Name composeName(Name name, Name prefix) throws NamingException {
          return null;
      }
  
      /**
       * Method composeName
       *
       *
       * @param name
       * @param prefix
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public String composeName(String name, String prefix) throws NamingException {
          return null;
      }
  
      /**
       * Method addToEnvironment
       *
       *
       * @param propName
       * @param propVal
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Object addToEnvironment(String propName, Object propVal) throws NamingException {
          return null;
      }
  
      /**
       * Method removeFromEnvironment
       *
       *
       * @param propName
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Object removeFromEnvironment(String propName) throws NamingException {
          return null;
      }
  
      /**
       * Method getEnvironment
       *
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public Hashtable getEnvironment() throws NamingException {
          return null;
      }
  
      /**
       * Method close
       *
       *
       * @throws NamingException
       *
       */
      public void close() throws NamingException {}
  
      /**
       * Method getNameInNamespace
       *
       *
       * @return
       *
       * @throws NamingException
       *
       */
      public String getNameInNamespace() throws NamingException {
          return null;
      }
  }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>