Package com.sun.xml.registry.uddi.bindings_v2_2

Examples of com.sun.xml.registry.uddi.bindings_v2_2.FindBusiness


    /**
     * Create an instance of {@link GetAssertionStatusReport }
     *
     */
    public GetAssertionStatusReport createGetAssertionStatusReport() {
        return new GetAssertionStatusReport();
    }
View Full Code Here


    /**
     * Create an instance of {@link GetAuthToken }
     *
     */
    public GetAuthToken createGetAuthToken() {
        return new GetAuthToken();
    }
View Full Code Here

    /**
     * Create an instance of {@link GetBindingDetail }
     *
     */
    public GetBindingDetail createGetBindingDetail() {
        return new GetBindingDetail();
    }
View Full Code Here

    /**
     * Create an instance of {@link GetBusinessDetail }
     *
     */
    public GetBusinessDetail createGetBusinessDetail() {
        return new GetBusinessDetail();
    }
View Full Code Here

    /**
     * Create an instance of {@link GetBusinessDetailExt }
     *
     */
    public GetBusinessDetailExt createGetBusinessDetailExt() {
        return new GetBusinessDetailExt();
    }
View Full Code Here

    /**
     * Create an instance of {@link TModelInstanceDetails }
     *
     */
    public TModelInstanceDetails createTModelInstanceDetails() {
        return new TModelInstanceDetails();
    }
View Full Code Here

    /**
     * Create an instance of {@link TModelInstanceInfo }
     *
     */
    public TModelInstanceInfo createTModelInstanceInfo() {
        return new TModelInstanceInfo();
    }
View Full Code Here

    /**
     * Create an instance of {@link TModelList }
     *
     */
    public TModelList createTModelList() {
        return new TModelList();
    }
View Full Code Here

    /**
     * Create an instance of {@link ValidateValues }
     *
     */
    public ValidateValues createValidateValues() {
        return new ValidateValues();
    }
View Full Code Here

  public BusinessList findBusiness(Name[] nameArray,
      DiscoveryURLs discoveryURLs, IdentifierBag identifierBag,
      CategoryBag categoryBag, TModelBag tModelBag,
      FindQualifiers findQualifiers, int maxRows)
      throws RegistryException {
    FindBusiness request = this.objectFactory.createFindBusiness();

    if (nameArray != null) {
      request.getName().addAll(Arrays.asList(nameArray));
    }

    if (discoveryURLs != null) {
      request.setDiscoveryURLs(discoveryURLs);
    }

    if (identifierBag != null) {
      request.setIdentifierBag(identifierBag);
    }

    if (categoryBag != null) {
      request.setCategoryBag(categoryBag);
    }

    if (tModelBag != null) {
      request.setTModelBag(tModelBag);
    } else {
      request.setTModelBag(this.objectFactory.createTModelBag());
     }

    if (findQualifiers != null) {
      request.setFindQualifiers(findQualifiers);
    }

    request.setMaxRows(maxRows);

        BusinessList bl;
        JAXBElement<?> o = execute(this.objectFactory.createFindBusiness(request),
            this.getInquiryURI());
        bl = (BusinessList) o.getValue();
View Full Code Here

TOP

Related Classes of com.sun.xml.registry.uddi.bindings_v2_2.FindBusiness

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.