Package com.sun.enterprise.config.impl

Examples of com.sun.enterprise.config.impl.ConfigDeleteImpl


                    xpath = cad.getXPath();
                }else if(configObject instanceof ConfigUpdateImpl){
                    ConfigUpdateImpl cad = (ConfigUpdateImpl) configObject;
                    xpath = cad.getXPath();
                }else if(configObject instanceof  ConfigDeleteImpl){
                    ConfigDeleteImpl cad = (ConfigDeleteImpl) configObject;
                    xpath = cad.getXPath();
                }
                //object = configContext.exactLookup(xpath);
                String id = getIdFromXpath(xpath);
                if (id == null) {
                    continue;
View Full Code Here


 
  /**
   * creates a configdelete
   */
  public static ConfigDelete createConfigDelete(String xpath) {
      return new ConfigDeleteImpl(xpath);
  }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.config.impl.ConfigDeleteImpl

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.