Package com.founder.fix.bpmn2extensions.coreconfig

Examples of com.founder.fix.bpmn2extensions.coreconfig.AllUserInfo


      String initorName = StringUtil.getString(filter.get("initorName"));
      if (StringUtil.isNotEmpty(initorName)) {
        initorName = initorName.replace("'", "");
        ProcessEngine processEngine = ProcessEngineManagement
            .getDefaultProcessEngine();
        AllUserInfo userInfoConfig = processEngine
            .getProcessEngineConfiguration().getUserDefinition()
            .getUserInfoConfig();
        leftJoinStr += " LEFT JOIN (" + userInfoConfig.getSqlText()
            + ") UT on UT." + userInfoConfig.getUserIdField()
            + " = P.INITIATOR ";
        whereSql += " and (UT." + userInfoConfig.getUserNameField()
            + " LIKE '%" + initorName + "%'  or UT."
            + userInfoConfig.getUserIdField() + " = '"
            + initorName + "')";
      }

     
      String bizKey     = StringUtil.getString(filter.get("bizKey"));
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetAllUserInfo(AllUserInfo newAllUserInfo, NotificationChain msgs) {
    AllUserInfo oldAllUserInfo = allUserInfo;
    allUserInfo = newAllUserInfo;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CoreconfigPackage.DESIGNER_ORG_CONFIG__ALL_USER_INFO, oldAllUserInfo, newAllUserInfo);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

  }

  protected void initUserDefinition() {

    UserDefinition userDefinitionObj = (UserDefinition) ReflectUtil.instantiate("com.founder.fix.fixflow.expand.identity.UserDefinitionImpl");
    AllUserInfo allUserInfo = fixFlowConfig.getDesignerOrgConfig().getAllUserInfo();
    userDefinitionObj.setUserInfoConfig(allUserInfo);
    this.userDefinition = userDefinitionObj;

  }
View Full Code Here

TOP

Related Classes of com.founder.fix.bpmn2extensions.coreconfig.AllUserInfo

Copyright © 2018 www.massapicom. 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.