Examples of OCUserArray


Examples of com.ipc.oce.objects.OCUserArray

  }
 
  @Test
  public void listUsers() throws JIException {
    OCInfoBaseUsersManager manager = app.getInfoBaseUserManager();
    OCUserArray array = manager.getUsers();
    OCInfoBaseUser[] userArray = array.toArray();
    for (OCInfoBaseUser user : userArray) {
      System.out.println(user.getName());
    }
  }
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.