Examples of OCExchangePlansCollection


Examples of com.ipc.oce.objects.OCExchangePlansCollection

   * @return OCExchangePlansCollection
   * @throws JIException
   */
  public OCExchangePlansCollection getExchangePlansCollection()
      throws JIException {
    return new OCExchangePlansCollection(get("ExchangePlans"));
  }
View Full Code Here

Examples of com.ipc.oce.objects.OCExchangePlansCollection

   * @return OCExchangeManger
   * @throws JIException
   */
  public OCExchangePlanManager getExchangePlanManager(String managerName)
      throws JIException {
    OCExchangePlansCollection collection = getExchangePlansCollection();
    try {
      return collection.getExchangePlan(managerName);
    } catch (JIException e) {
      getErrorListener().onError(this, e);
      throw e;
    }
  }
View Full Code Here

Examples of com.ipc.oce.objects.OCExchangePlansCollection

    }
  }
 
  @Test
  public void enumExchangePlans() throws JIException {
    OCExchangePlansCollection collection = app.getExchangePlansCollection();
    System.out.println("\nOCExchangePlansCollection ====================");
    for (OCExchangePlanManager manager : collection) {
      System.out.println(manager.getMetadata().getFullName());
    }
  }
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.