Package org.apache.juddi.datatype.request

Examples of org.apache.juddi.datatype.request.GetRegistryInfo


    return obj;
  }

  public void marshal(RegistryObject object,Element parent)
  {
    GetRegistryInfo request = (GetRegistryInfo)object;
    Element element = parent.getOwnerDocument().createElement(TAG_NAME);
    AbstractHandler handler = null;

    String generic = request.getGeneric();
    if (generic != null)
      element.setAttribute("generic",generic);

    parent.appendChild(element);
  }
View Full Code Here


   * @exception RegistryException;
   */
  public RegistryInfo getRegistryInfo()
    throws RegistryException
  {
    GetRegistryInfo request = new GetRegistryInfo();

    return (RegistryInfo)execute(request);
  }
View Full Code Here

TOP

Related Classes of org.apache.juddi.datatype.request.GetRegistryInfo

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.