Class UserDTO

java.lang.Object
com.atlassian.jira.model.querydsl.UserDTO
All Implemented Interfaces:
DTO, Serializable

public class UserDTO extends Object implements DTO, Serializable
Data Transfer Object for the User entity.

Generated by the JIRA Querydsl code generation tool - https://bitbucket.org/atlassian/jira-querydsl-codegen/

See Also:
  • Constructor Details

  • Method Details

    • getId

      public Long getId()
    • getDirectoryId

      public Long getDirectoryId()
    • getUserName

      public String getUserName()
    • getLowerUserName

      public String getLowerUserName()
    • getActive

      public Integer getActive()
    • getCreatedDate

      public Timestamp getCreatedDate()
    • getUpdatedDate

      public Timestamp getUpdatedDate()
    • getFirstName

      public String getFirstName()
    • getLowerFirstName

      public String getLowerFirstName()
    • getLastName

      public String getLastName()
    • getLowerLastName

      public String getLowerLastName()
    • getDisplayName

      public String getDisplayName()
    • getLowerDisplayName

      public String getLowerDisplayName()
    • getEmailAddress

      public String getEmailAddress()
    • getLowerEmailAddress

      public String getLowerEmailAddress()
    • getCredential

      public String getCredential()
    • getDeletedExternally

      public Integer getDeletedExternally()
    • getExternalId

      public String getExternalId()
    • toGenericValue

      public org.ofbiz.core.entity.GenericValue toGenericValue(OfBizDelegator ofBizDelegator)
      Creates a GenericValue object from the values in this Data Transfer Object.

      This can be useful when QueryDsl code needs to interact with legacy OfBiz code.

      Specified by:
      toGenericValue in interface DTO
      Parameters:
      ofBizDelegator - OfBizDelegator will have makeValue() called on it.
      Returns:
      a GenericValue object constructed from the values in this Data Transfer Object.
    • fromGenericValue

      public static UserDTO fromGenericValue(org.ofbiz.core.entity.GenericValue gv)
      Constructs a new instance of this Data Transfer object from the values in the given GenericValue.

      This can be useful when QueryDsl code needs to interact with legacy OfBiz code.

      Parameters:
      gv - the GenericValue
      Returns:
      a new instance of this Data Transfer object with the values in the given GenericValue.
    • builder

      public static UserDTO.Builder builder()
    • builder

      public static UserDTO.Builder builder(UserDTO userDTO)