Package org.ogce.xregistry.client

Examples of org.ogce.xregistry.client.XRegistryClient.findResource()


      if (xregistryURL == null) {
        xregistryURL = XBayaConstants.DEFAULT_XREGISTRY_URL;
      }
      XRegistryClient xregistryClient = new XRegistryClient(gssCredential, XBayaSecurity.getTrustedCertificates(),
          xregistryURL.toString());
      ResourceData[] datas = xregistryClient.findResource("");

      int index = 0;
      while (maxNum > 0 && datas.length > index) {
        ResourceData data = datas[index];
        QName qName = data.getName();
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.