Examples of LightweightPerson


Examples of com.any_erp_vendor.moa.objects.resources.v1_0.LightweightPerson

    String instId = Integer.toString(getChannelStaticData().getPerson().getID());
    LogService.log(LogService.INFO, "[basicPersonQueryHandler] instId is " + instId);
    LogService.log(LogService.INFO, "[basicPersonQueryHandler] firstName is " + firstName);
    LogService.log(LogService.INFO, "[basicPersonQueryHandler] lastName is " + lastName);
    try {
      LightweightPerson lPerson =
          (LightweightPerson)getAppConfig().getObject(queryObjectName);
      lPerson.getEnterpriseFields().setIgnoreValidation(true);
      LogService.log(LogService.INFO, "[basicPersonQueryHandler] got LightweightPerson...");

      if (instId != null && instId.length() > 0) {
        lPerson.setInstitutionalId(instId);
        LogService.log(LogService.INFO, "[basicPersonQueryHandler] set instid on lightweight person...");

        JmsEnterpriseObject jeo = (JmsEnterpriseObject)getAppConfig().getObject(messageObjectName);
        LogService.log(LogService.INFO, "[basicPersonQueryHandler] got " + messageObjectName + " from AppConfig, performing Query...");
View Full Code Here

Examples of com.any_erp_vendor.moa.objects.resources.v1_0.LightweightPerson

  }
 
    // Make sure all objects needed are configured and available for use.
  // LightweightPerson, BasicPersion, EnterpriseUserPassword
     try {
      LightweightPerson lPerson =
            (LightweightPerson)getAppConfig().getObject("LightweightPerson");
        BasicPerson aeo = (BasicPerson)getAppConfig().getObject("BasicPerson");
        EnterpriseUserPassword newEntUserPassword = (EnterpriseUserPassword)getAppConfig()
          .getObject("EnterpriseUserPassword");
    }
View Full Code Here

Examples of com.any_erp_vendor.moa.objects.resources.v1_0.LightweightPerson

    }
  }

  private BasicPerson getBasicPerson(String instId) throws EnterpriseConfigurationObjectException, EnterpriseFieldException, EnterpriseObjectQueryException {
       
    LightweightPerson lPerson =
          (LightweightPerson)getAppConfig().getObject("LightweightPerson");
        logger.info("[PasswordSyncCommand.getBasicPerson] Got LightweightPerson...");
 
        lPerson.setInstitutionalId(instId);
        logger.info("[PasswordSyncCommand.getBasicPerson] Set instid on lightweight person...");
       
        BasicPerson aeo = (BasicPerson)getAppConfig().getObject("BasicPerson");
        logger.info("[PasswordSyncCommand.getBasicPerson] Got BasicPerson from AppConfig, performing Query...");
 
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

  protected void bp_queryButton_mouseClicked(MouseEvent e) {
    clearBasicPersonFields();
    String messageObjectName = BASIC_PERSON;
    org.openeai.OpenEaiObject.logger.info("Message Object Name is: " + messageObjectName);
    try {
      LightweightPerson lPerson =
        (LightweightPerson)APP_CONFIG.getObject(LIGHTWEIGHT_PERSON);
      org.openeai.OpenEaiObject.logger.info("got LightweightPerson...");
     
      lPerson.setInstitutionalId(instIdTextField.getText());
      org.openeai.OpenEaiObject.logger.info("set instid on lightweight person...");
     
      org.any_openeai_enterprise.moa.objects.resources.v1_0.Name aName = lPerson.newName();
      if (bp_lastNameTextField.getText() != null && bp_lastNameTextField.getText().length() > 0) {
        aName.setLastName(bp_lastNameTextField.getText());
        lPerson.setName(aName);
      }
     
      if (bp_firstNameTextField.getText() != null && bp_firstNameTextField.getText().length() > 0) {
        aName.setFirstName(bp_firstNameTextField.getText());
        lPerson.setName(aName);
      }
     
      if (bp_middleNameTextField.getText() != null && bp_middleNameTextField.getText().length() > 0) {
        aName.setMiddleName(bp_middleNameTextField.getText());
        lPerson.setName(aName);
      }
     
      ActionableEnterpriseObject jeo = (ActionableEnterpriseObject)APP_CONFIG.getObject(messageObjectName);
      org.openeai.OpenEaiObject.logger.info("got " + messageObjectName + " from AppConfig, performing Query...");
     
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

     
      // first, get the name associated to the person who's emergency contacts we're looking for
      String messageObjectName = BASIC_PERSON;
      org.openeai.OpenEaiObject.logger.info("Message Object Name is: " + messageObjectName);
      try {
        LightweightPerson lPerson =
          (LightweightPerson)APP_CONFIG.getObject(LIGHTWEIGHT_PERSON);
        org.openeai.OpenEaiObject.logger.info("got LightweightPerson...");
       
        lPerson.setInstitutionalId(instIdTextField.getText());
        org.openeai.OpenEaiObject.logger.info("set instid on lightweight person...");
       
        ActionableEnterpriseObject bpJeo = (ActionableEnterpriseObject)APP_CONFIG.getObject(messageObjectName);
        org.openeai.OpenEaiObject.logger.info("got " + messageObjectName + " from AppConfig, performing Query...");
       
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

        publishSyncError(eControlArea, errors, ele);
        return;
      }

      // Determine whether the user exists is the directory server.
      LightweightPerson lPerson = newEntUserPassword.getEnterpriseUser()
        .getLightweightPerson();
      String userName = "";
      if (lPerson.getName() != null) userName = lPerson.getName().getFirstName()
        + " " + lPerson.getName().getLastName();

      logger.debug("[" + getServiceName() + ".execute] Querying the directory to " +
        "determine if the user whose password has changed already exists " +
        "in the directory.");

      // Specify the search filter for the directory service query using
      // the employeeNumber.
      String filter = "employeeNumber=" + lPerson.getInstitutionalId();
      logger.debug("[" + getServiceName() + ".execute] Search filter is: " + filter);

      // Specify the providerUrl.
      String providerUrl = getUserDirectoryTreeBase();
      logger.debug("[" + getServiceName() + ".execute] providerUrl is: " +
        providerUrl);

      // Specify search controls that set the scope of the search.
      SearchControls cons = new SearchControls();
      cons.setSearchScope(SearchControls.ONELEVEL_SCOPE);
      String[] attrs = new String[1];
      attrs[0] = "uid";
      cons.setReturningAttributes(attrs);

      // Search for user entries that match the employeeNumber, retrieving
      // the uid.
      NamingEnumeration results = null;
      boolean userExists = false;
      try {
        logger.debug("[" + getServiceName() + ".execute] Querying the directory " +
          "server.");
        results = getDirContext().search(providerUrl, filter, cons);
        if (results != null && results.hasMore() == true) userExists = true;  
      }
      catch (NamingException ne) {
        // An error occurred querying the directory server to determine whether
        // the user exists. Log it, publich a error message, and return.
        String errMsg = "An error occurred querying the directory server to " +
          "determine whether the user exists.";
        logger.debug("[" + getServiceName() + ".execute] " + errMsg);
        Error error = new Error();
        error.setType("system");
        error.setErrorNumber("DirectoryServiceGateway-2002");
        error.setErrorDescription(errMsg);
        errors = new ArrayList();
        errors.add(error);
        publishSyncError(eControlArea, errors, ne);
        return;
      }

      // If there are no matching entries, the user does not exist. If the
      // createMissingUsers property is true, create the user with attribute
      // and password indicated in the new data of the message. If the
      // createMissingUsers property is false, publish a Sync.Error-Sync
      // indicating that the password cannot be set for this user, because
      // the user does not exist.
      if (userExists == false) {
        logger.info("[" + getServiceName() + ".execute] The user " + userName +
          "(" + lPerson.getInstitutionalId() +
          ") does not exist in the directory.");

        if (getCreateMissingUsers() == true) {
          // Create the user.
          // -- Build the attributes for the new directory entry.
          BasicAttributes attributes = buildDirectoryUser(newEntUserPassword);

          // -- Create the new subcontext for the entry.
          String dn = "uid=" + getEnterpriseId(newEntUserPassword
            .getEnterpriseUser()).getPrincipal() + "," +
            getUserDirectoryTreeBase();
          logger.debug("[" + getServiceName() + ".execute] dn for the new " +
            "directory context is: " + dn);
          try {
            logger.debug("[" + getServiceName() + ".execute] Creating directory " +
              "user with attributes: " + attributes.toString());
            Context result = getDirContext().createSubcontext(dn, attributes);
            logger.info("[" + getServiceName() + ".execute] Created directory " +
              "user.");
          }
          catch (NamingException ne) {
            // An error occurred creating the entry for the user in the
            // directory server. Log it, publich a error message, and return.
            String errMsg = "An error occurred creating the entry for the " +
              "user in the directory server.";
            logger.debug("[" + getServiceName() + ".execute] " + errMsg);
            Error error = new Error();
            error.setType("system");
            error.setErrorNumber("DirectoryServiceGateway-2002");
            error.setErrorDescription(errMsg);
            errors = new ArrayList();
            errors.add(error);
            publishSyncError(eControlArea, errors, ne);
            return;
          }
          return;
        }
        else {
          // The createMissingUsers property is false, so we will not create
          // the missing user.
          logger.info("[" + getServiceName() + ".execute] createMissingUsers is " +
            "false, so the missing user will not be created and the " +
            "cannot be set.");
          return;
        }
      }
      else {
        // Otherwise, the user already exists, so the user does not have to be
        // created. Log it and return.
        logger.info("[" + getServiceName() + ".execute] The directory user already "
            + "exists, so the user does not need to be created.");
        return;
      }
    }

    // Handle an EnterpriseUserPassword.Update-Sync
    if (messageAction.equalsIgnoreCase("Update")) {
      // Get the baseline state of the EnterpriseUserPassword and build an
      // EnterpriseUserPassword object.
      Element eBaselinePassword = inDoc.getRootElement().getChild("DataArea")
        .getChild("BaselineData").getChild("EnterpriseUserPassword");
      try
        currentEntUserPassword.buildObjectFromInput(eBaselinePassword);
      }
      catch (EnterpriseLayoutException ele) {
        // An error occurred building the EnterpriseUserPassword object from the
        // EnterpriseUserPassword element contained in the BaselineData element
        // of the message. Log it and publish a sync error message.
        Error error = new Error();
        error.setType("system");
        error.setErrorNumber("DirectoryServiceGateway-1001");
        error.setErrorDescription("An error occurred building the " +
          "EnterpriseUserPassword object from the EnterpriseUserPassword " +
          "element contained in the BaselineData element of the message. The " +
          "exception is: " + ele.getMessage());
        errors = new ArrayList();
        errors.add(error);
        publishSyncError(eControlArea, errors, ele);
        return;
      }

      // Get the new state of the EnterpriseUserPassword and build an
      // EnterpriseUserPassword object.
      Element eNewPassword = inDoc.getRootElement().getChild("DataArea")
        .getChild("NewData").getChild("EnterpriseUserPassword");
      try
        newEntUserPassword.buildObjectFromInput(eNewPassword);
      }
      catch (EnterpriseLayoutException ele) {
        // An error occurred building the EnterpriseUserPassword object from the
        // EnterpriseUserPassword element contained in the NewData element of
        // the message. Log it and publish a sync error message.
        Error error = new Error();
        error.setType("system");
        error.setErrorNumber("DirectoryServiceGateway-1002");
        error.setErrorDescription("An error occurred building the " +
          "EnterpriseUserPassword object from the EnterpriseUserPassword " +
          "element contained in the NewData element of the message. The " +
          "exception is: " + ele.getMessage());
        errors = new ArrayList();
        errors.add(error);
        publishSyncError(eControlArea, errors, ele);
        return;
      }

      // Determine whether the user exists is the directory server.
      LightweightPerson lPerson = newEntUserPassword.getEnterpriseUser()
        .getLightweightPerson();
      String userName = "";
      if (lPerson.getName() != null) userName = lPerson.getName().getFirstName()
        + " " + lPerson.getName().getLastName();

      logger.debug("[" + getServiceName() + ".execute] Querying the directory to " +
        "see if the user whose password has changed already exists in the " +
        "directory.");

      // Specify the search filter for the directory service query using
      // the uniqueMember and the uniquePermission built above.
      String filter = "employeeNumber=" + lPerson.getInstitutionalId();
      logger.debug("[" + getServiceName() + ".execute] Search filter is: " + filter);

      // Specify the providerUrl.
      String providerUrl = getUserDirectoryTreeBase();
      logger.debug("[" + getServiceName() + ".execute] providerUrl is: " +
        providerUrl);

      // Specify search controls that set the scope of the search.
      SearchControls cons = new SearchControls();
      cons.setSearchScope(SearchControls.ONELEVEL_SCOPE);
      String[] attrs = new String[1];
      attrs[0] = "uid";
      cons.setReturningAttributes(attrs);

      // Search for user entries that match the employeeNumber, retrieving
      // the uid.
      try {
        logger.debug("[" + getServiceName() + ".execute] Querying the directory " +
          "server.");
        NamingEnumeration results = getDirContext().search(providerUrl, filter,
          cons);

        // If there are no matching entries, publish a error message indicating
        // that the user does not exist.
        if (results == null || results.hasMore() == false) {
          Error error = new Error();
          error.setType("application");
          error.setErrorNumber("DirectoryServiceGateway-1005");
          error.setErrorDescription("No user " + userName + "(" +
            lPerson.getInstitutionalId() + ") exists in the directory. " +
            "Cannot reset the password for this user.");
          logger.fatal("[" + getServiceName() + ".execute] " +
            error.getErrorDescription());
          errors = new ArrayList();
          errors.add(error);
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

    throws EnterpriseConfigurationObjectException, EnterpriseFieldException,
         EnterpriseObjectCreateException, EnterpriseObjectQueryException, EnterpriseObjectUpdateException {
      EnterpriseUser eu = (EnterpriseUser)appConfig.getObject(ENTERPRISE_USER);
      logger.info("["+portletName+"] Got " + ENTERPRISE_USER + " from AppConfig, performing Query...");

      LightweightPerson lPerson = eu.newLightweightPerson();
    logger.info("["+portletName+"] Got LightweightPerson...");
    lPerson.setInstitutionalId(instID);
    logger.info("["+portletName+"] Set instid on lightweight person...");

    NetId netId = eu.newNetId();
    logger.info("["+portletName+"] Got NetId...");
    netId.setPrincipal(principal);
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

      EnterpriseUser eu =
        (EnterpriseUser)getAppConfig().getObject(queryObjectName);
      eu.getEnterpriseFields().setIgnoreValidation(true);
      LogService.log(LogService.INFO, "got EnterpriseUser...");

      LightweightPerson lPerson = eu.newLightweightPerson();
      lPerson.getEnterpriseFields().setIgnoreValidation(true);

      NetId netId = eu.newNetId();
      netId.setPrincipal(principal);
      netId.setDomain(domain);
      eu.addNetId(netId);

      if (instId != null && instId.length() > 0) {
        lPerson.setInstitutionalId(instId);
        Name name = lPerson.newName();
        name.setFirstName(firstName);
        name.setLastName(lastName);
        lPerson.setName(name);
        LogService.log(LogService.INFO, "set LightweightPerson on EnterpriseUser...");
        eu.setLightweightPerson(lPerson);

        JmsEnterpriseObject jeo = (JmsEnterpriseObject)getAppConfig().getObject(messageObjectName);
        LogService.log(LogService.INFO, "got " + messageObjectName + " from AppConfig, performing Query...");
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

    NetId netID = entUser.getNetId(0);
    String principal = netID.getPrincipal();
    String enterpriseID = null;

    try {
      LightweightPerson lightweightPerson = entUser.getLightweightPerson();
      enterpriseID = lightweightPerson.getInstitutionalId();
      BasicPerson basicPerson = getBasicPerson(enterpriseID);
      Name name = basicPerson.getName();
      String firstName = name.getFirstName();
      String lastName = name.getLastName();
      String middleName = name.getMiddleName();
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.LightweightPerson

   * @throws EnterpriseFieldException
   * @throws EnterpriseObjectQueryException
   */
  private BasicPerson getBasicPerson(String instId) throws EnterpriseConfigurationObjectException, EnterpriseFieldException, EnterpriseObjectQueryException {
       
    LightweightPerson lightPerson = (LightweightPerson) getAppConfig().getObject(LIGHTWEIGHT_PERSON);
    logger.debug("[" + getServiceName() + "] Got LightweightPerson...");

    lightPerson.setInstitutionalId(instId);
    logger.debug("[" + getServiceName() + "] Set instid on lightweight person...");

    BasicPerson basicPerson = (BasicPerson) getAppConfig().getObject(BASIC_PERSON);
    logger.debug("[" + getServiceName() + "] Got " + BASIC_PERSON + " from AppConfig, performing Query...");

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.