Class OAuthServiceProviderTokenDTO

java.lang.Object
com.atlassian.jira.model.querydsl.OAuthServiceProviderTokenDTO
All Implemented Interfaces:
DTO

public class OAuthServiceProviderTokenDTO extends Object implements DTO
Data Transfer Object for the OAuthServiceProviderToken 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()
    • getCreated

      public Timestamp getCreated()
    • getToken

      public String getToken()
    • getTokenSecret

      public String getTokenSecret()
    • getTokenType

      public String getTokenType()
    • getConsumerKey

      public String getConsumerKey()
    • getUsername

      public String getUsername()
    • getTtl

      public Long getTtl()
    • getAuth

      public String getAuth()
    • getCallback

      public String getCallback()
    • getVerifier

      public String getVerifier()
    • getVersion

      public String getVersion()
    • getSessionHandle

      public String getSessionHandle()
    • getSessionCreationTime

      public Timestamp getSessionCreationTime()
    • getSessionLastRenewalTime

      public Timestamp getSessionLastRenewalTime()
    • getSessionTimeToLive

      public Timestamp getSessionTimeToLive()
    • 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 OAuthServiceProviderTokenDTO 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 OAuthServiceProviderTokenDTO.Builder builder()
    • builder

      public static OAuthServiceProviderTokenDTO.Builder builder(OAuthServiceProviderTokenDTO oAuthServiceProviderTokenDTO)