Package com.ibm.sbt.bss.app

Source Code of com.ibm.sbt.bss.app.CustomerManagement

/*
* © Copyright IBM Corp. 2014
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.ibm.sbt.bss.app;

import com.ibm.sbt.services.client.base.JsonEntity;
import com.ibm.sbt.services.client.base.datahandlers.EntityList;
import com.ibm.sbt.services.client.smartcloud.bss.CustomerManagementService;
import com.ibm.sbt.services.endpoints.BasicEndpoint;

/**
* @author mwallace
*
*/
public class CustomerManagement {

  /**
   * Demonstrate using Customer Management API's.
   *
   * @param args
   */
  public static void main(String[] args) {
    if (args.length < 3) {
      System.out.println("Usage: java com.ibm.sbt.bss.app.CustomerManagement <url> <user> <password> <verb> <output>");
      return;
    }
   
    String url = args[0];
    String user = args[1];
    String password = args[2];
   
    try {
      BasicEndpoint basicEndpoint = new BasicEndpoint();
      basicEndpoint.setUrl(url);
      basicEndpoint.setForceTrustSSLCertificate(true);
      basicEndpoint.setUser(user);
      basicEndpoint.setPassword(password);

      CustomerManagementService customerManagement = new CustomerManagementService(basicEndpoint);

      EntityList<JsonEntity> customerList = customerManagement.getCustomers();
      for (JsonEntity customer : customerList) {
        System.out.println(customer.toJsonString());
      }
     
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
 
}
TOP

Related Classes of com.ibm.sbt.bss.app.CustomerManagement

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.