示例#1
0
 public ActiveParticipant addUserProcess(
     String processID, String[] aets, String processName, String hostname, boolean requestor) {
   return addActiveParticipant(
       ActiveParticipant.createActiveProcess(processID, aets, processName, hostname, requestor));
 }
示例#2
0
 public ActiveParticipant addUserPerson(
     String userID, String altUserID, String userName, String hostname, boolean requestor) {
   return addActiveParticipant(
       ActiveParticipant.createActivePerson(userID, altUserID, userName, hostname, requestor));
 }