コード例 #1
0
  private void setAttribute() {

    employeeIdentity = (EmployeeIdentity) iterator.next();
    pageContext.setAttribute(
        "employeeIdentityId",
        employeeIdentity.getAttributeId() == null ? "" : employeeIdentity.getAttributeId());
    pageContext.setAttribute("employeeIdentityCode", employeeIdentity.getAttributeCode());
    pageContext.setAttribute("employeeIdentityName", employeeIdentity.getAttributeName());
    pageContext.setAttribute("employeeIdentityDescription", employeeIdentity.getDescription());
  }