コード例 #1
0
 public AbstractBaseObject getFormData() throws ApplicationException {
   UserRole tmpUserRole = new UserRole();
   tmpUserRole.setID(TextUtility.parseIntegerObj(this.getID()));
   tmpUserRole.setRoleName(this.getRoleName());
   tmpUserRole.setRoleDesc(this.getRoleDesc());
   tmpUserRole.setRoleType(this.getRoleType());
   tmpUserRole.setRecordStatus(this.getRecordStatus());
   tmpUserRole.setUpdateCount(TextUtility.parseIntegerObj(this.getUpdateCount()));
   tmpUserRole.setCreatorID(TextUtility.parseIntegerObj(this.getCreatorID()));
   tmpUserRole.setCreateDate(parseTimestamp(this.getCreateDate()));
   tmpUserRole.setUpdaterID(TextUtility.parseIntegerObj(this.getUpdaterID()));
   tmpUserRole.setUpdateDate(parseTimestamp(this.getUpdateDate()));
   return tmpUserRole;
 }