Package com.ibm.sbt.services.client.smartcloud.bss

Examples of com.ibm.sbt.services.client.smartcloud.bss.SubscriberJsonBuilder


    public String addSubscriber(String customerId, String email) throws BssException, JsonException, IOException {
      return addSubscriber(customerId, email, SubscriberManagementService.Role.User);
    }
   
    public String addSubscriber(String customerId, String email, SubscriberManagementService.Role role) throws BssException, JsonException, IOException {
    SubscriberJsonBuilder subscriber = new SubscriberJsonBuilder();
    subscriber.setCustomerId(customerId)
          .setRole(role)
          .setFamilyName("Doe")
          .setGivenName("Aaron")
          .setEmailAddress(email)
          .setNamePrefix("Mr")
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.client.smartcloud.bss.SubscriberJsonBuilder

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.