Package com.ibm.sbt.services.endpoints.js

Examples of com.ibm.sbt.services.endpoints.js.JSReference


  /* (non-Javadoc)
   * @see com.ibm.sbt.services.endpoints.AbstractEndpoint#getTransport(java.lang.String, java.lang.String)
   */
  @Override
  public JSReference getTransport(String endpointName, String moduleId) {
    JSReference reference = new JSReference("sbt/GadgetTransport");
    reference.getProperties().put("serviceName", getServiceName());
      return reference;
  }
View Full Code Here


        this.authenticationPage = authenticationPage;
    }

    @Override
    public JSReference getAuthenticator(String endpointName, String sbtUrl) {
      JSReference reference = new JSReference("sbt/authenticator/Basic");
      reference.getProperties().put("url", sbtUrl);
     
      return reference;
    }
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.endpoints.js.JSReference

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.