CRMConnectionScratch.java [src/java/rv/utils] Revision: default  Date:
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2022, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package rv.utils;

import csip.SessionLogger;

/**
 *
 * @author od
 */
public class CRMConnectionScratch {

  static void t1() throws Exception {
    CRMConnection s = new CRMConnection(new SessionLogger());

    String f = s.getProductList("BOCU");
    System.out.println(f);
  }


  public static void main(String[] args) throws Exception {
    t1();
  }

}