Examples of Actor


Examples of ru.runa.specific.of.RunaOrgStructureImporter.Actor

    if (currentDefinition != null && currentDefinition.getParameters().size() > 0) {
      value = currentDefinition.getParameters().get(0).getValue();
    }
    try {
      int actorId = Integer.parseInt(value);
      Actor actor = getActorByCode(actorId);
      if (actor != null) {
        value = actor.name;
        selectionText.setForeground(actor.getForeground());
      }
    } catch (Exception e) {
      // ignore for presentation
    }
    selectionText.setText(value);
View Full Code Here

Examples of xregistry.generated.ListSubActorsGivenAGroupResponseDocument.ListSubActorsGivenAGroupResponse.Actor

            statement.setString(1,group );
           
            ResultSet results = statement.executeQuery();
            while(results.next()){
                String groupId = results.getString(USERID);
                Actor actor = Actor.Factory.newInstance();
                actor.setActor(groupId);
                actor.setIsUser(true);
                actorList.add(actor);
            }
            results.close();
            statement.close();
           
            statement = connection.prepareStatement(GET_SUBGROUPS_GIVEN_GROUP);
            statement.setString(1,group );
            results = statement.executeQuery();
            while(results.next()){
                String groupId = results.getString(CONTANTED_GROUP_ID);
                Actor actor = Actor.Factory.newInstance();
                actor.setActor(groupId);
                actor.setIsUser(false);
                actorList.add(actor);
            }
           
        } catch (SQLException e) {
            throw new XregistryException(e);
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.