Search in sources :

Example 1 with UserRequestViewerOutDto

use of org.jaffa.applications.jaffa.modules.user.components.userrequestviewer.dto.UserRequestViewerOutDto in project jaffa-framework by jaffa-projects.

the class UserRequestViewerTx method read.

// .//GEN-END:_destroy_2_be
// .//GEN-BEGIN:_read_1_be
/**
 * Returns the details for UserRequest.
 * @param input The criteria based on which an object will be retrieved.
 * @throws ApplicationExceptions This will be thrown if the criteria contains invalid data.
 * @throws FrameworkException Indicates some system error.
 * @return The object details. A null indicates, the object was not found.
 */
public UserRequestViewerOutDto read(UserRequestViewerInDto input) throws FrameworkException, ApplicationExceptions {
    UOW uow = null;
    try {
        // Print Debug Information for the input
        if (log.isDebugEnabled()) {
            log.debug("Input: " + (input != null ? input.toString() : null));
        }
        // create the UOW
        uow = new UOW();
        // Build the Criteria Object
        Criteria criteria = buildCriteria(input, uow);
        // .//GEN-END:_read_1_be
        // Add custom code before the query //GEN-FIRST:_read_1
        // .//GEN-LAST:_read_1
        // .//GEN-BEGIN:_read_2_be
        // Execute The Query
        Collection results = uow.query(criteria);
        // .//GEN-END:_read_2_be
        // Add custom code after the query //GEN-FIRST:_read_2
        // .//GEN-LAST:_read_2
        // .//GEN-BEGIN:_read_3_be
        // Convert the domain objects into the outbound dto
        UserRequestViewerOutDto output = buildDto(uow, results);
        // Print Debug Information for the output
        if (log.isDebugEnabled()) {
            log.debug("Output: " + (output != null ? output.toString() : null));
        }
        return output;
    } finally {
        if (uow != null)
            uow.rollback();
    }
}
Also used : UserRequestViewerOutDto(org.jaffa.applications.jaffa.modules.user.components.userrequestviewer.dto.UserRequestViewerOutDto) Criteria(org.jaffa.persistence.Criteria) UOW(org.jaffa.persistence.UOW)

Example 2 with UserRequestViewerOutDto

use of org.jaffa.applications.jaffa.modules.user.components.userrequestviewer.dto.UserRequestViewerOutDto in project jaffa-framework by jaffa-projects.

the class UserRequestViewerTx method buildDto.

// .//GEN-END:_buildCriteria_3_be
// .//GEN-BEGIN:_buildDto_1_be
private UserRequestViewerOutDto buildDto(UOW uow, Collection results) throws UOWException {
    UserRequestViewerOutDto output = null;
    Iterator itr = results.iterator();
    if (itr.hasNext()) {
        // just return the details for the 1st record retrieved.
        UserRequest userRequest = (UserRequest) itr.next();
        output = new UserRequestViewerOutDto();
        // .//GEN-END:_buildDto_1_be
        // Add custom code before all the setters //GEN-FIRST:_buildDto_1
        // .//GEN-LAST:_buildDto_1
        // .//GEN-BEGIN:_buildDto_RequestId_1_be
        output.setRequestId(userRequest.getRequestId());
        // .//GEN-END:_buildDto_RequestId_1_be
        // .//GEN-BEGIN:_buildDto_UserName_1_be
        output.setUserName(userRequest.getUserName());
        // .//GEN-END:_buildDto_UserName_1_be
        // .//GEN-BEGIN:_buildDto_FirstName_1_be
        output.setFirstName(userRequest.getFirstName());
        // .//GEN-END:_buildDto_FirstName_1_be
        // .//GEN-BEGIN:_buildDto_LastName_1_be
        output.setLastName(userRequest.getLastName());
        // .//GEN-END:_buildDto_LastName_1_be
        // .//GEN-BEGIN:_buildDto_Password_1_be
        output.setPassword(userRequest.getPassword());
        // .//GEN-END:_buildDto_Password_1_be
        // .//GEN-BEGIN:_buildDto_EMailAddress_1_be
        output.setEMailAddress(userRequest.getEMailAddress());
        // .//GEN-END:_buildDto_EMailAddress_1_be
        // .//GEN-BEGIN:_buildDto_SecurityQuestion_1_be
        output.setSecurityQuestion(userRequest.getSecurityQuestion());
        // .//GEN-END:_buildDto_SecurityQuestion_1_be
        // .//GEN-BEGIN:_buildDto_SecurityAnswer_1_be
        output.setSecurityAnswer(userRequest.getSecurityAnswer());
        // .//GEN-END:_buildDto_SecurityAnswer_1_be
        // .//GEN-BEGIN:_buildDto_Remarks_1_be
        output.setRemarks(userRequest.getRemarks());
        // .//GEN-END:_buildDto_Remarks_1_be
        // .//GEN-BEGIN:_buildDto_CreatedOn_1_be
        output.setCreatedOn(userRequest.getCreatedOn());
        // .//GEN-END:_buildDto_CreatedOn_1_be
        // .//GEN-BEGIN:_buildDto_ProcessedDatetime_1_be
        output.setProcessedDatetime(userRequest.getProcessedDatetime());
        // .//GEN-END:_buildDto_ProcessedDatetime_1_be
        // .//GEN-BEGIN:_buildDto_ProcessedUserId_1_be
        output.setProcessedUserId(userRequest.getProcessedUserId());
        // .//GEN-END:_buildDto_ProcessedUserId_1_be
        // .//GEN-BEGIN:_buildDto_Status_1_be
        output.setStatus(userRequest.getStatus());
        // .//GEN-END:_buildDto_Status_1_be
        // .//GEN-BEGIN:_buildDto_2_be
        // Add related objects, if required
        addRelatedDtos(uow, output, userRequest);
    // .//GEN-END:_buildDto_2_be
    // Add custom code to pass values to the dto //GEN-FIRST:_buildDto_2
    // .//GEN-LAST:_buildDto_2
    // .//GEN-BEGIN:_buildDto_3_be
    }
    return output;
}
Also used : UserRequestViewerOutDto(org.jaffa.applications.jaffa.modules.user.components.userrequestviewer.dto.UserRequestViewerOutDto) UserRequest(org.jaffa.applications.jaffa.modules.user.domain.UserRequest)

Aggregations

UserRequestViewerOutDto (org.jaffa.applications.jaffa.modules.user.components.userrequestviewer.dto.UserRequestViewerOutDto)2 UserRequest (org.jaffa.applications.jaffa.modules.user.domain.UserRequest)1 Criteria (org.jaffa.persistence.Criteria)1 UOW (org.jaffa.persistence.UOW)1