Examples of ValidateInquiry


Examples of org.apache.juddi.validation.ValidateInquiry

 
    public BindingDetail findBinding(FindBinding body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateFindBinding(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.FIND_BINDING, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public BusinessList findBusiness(FindBusiness body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateFindBusiness(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.FIND_BUSINESS, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public RelatedBusinessesList findRelatedBusinesses(FindRelatedBusinesses body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateFindRelatedBusinesses(body, false);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.FIND_RELATEDBUSINESSES, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public ServiceList findService(FindService body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateFindService(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.FIND_SERVICE, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public TModelList findTModel(FindTModel body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateFindTModel(body, false);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.FIND_TMODEL, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public BindingDetail getBindingDetail(GetBindingDetail body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateGetBindingDetail(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.FIND_TMODEL, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public BusinessDetail getBusinessDetail(GetBusinessDetail body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateGetBusinessDetail(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.GET_BUSINESSDETAIL, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public OperationalInfos getOperationalInfo(GetOperationalInfo body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateGetOperationalInfo(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.GET_OPERATIONALINFO, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public ServiceDetail getServiceDetail(GetServiceDetail body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateGetServiceDetail(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.GET_SERVICEDETAIL, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here

Examples of org.apache.juddi.validation.ValidateInquiry

 
    public TModelDetail getTModelDetail(GetTModelDetail body)
      throws DispositionReportFaultMessage {
                long startTime = System.nanoTime();
                try {
                    new ValidateInquiry(null).validateGetTModelDetail(body);
                } catch (DispositionReportFaultMessage drfm) {
                    long procTime = System.nanoTime() - startTime;
                    serviceCounter.update(InquiryQuery.GET_TMODELDETAIL, QueryStatus.FAILED, procTime);                     
                    throw drfm;
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.