Class ClientData

    • Constructor Detail

      • ClientData

        public ClientData()
    • Method Detail

      • getEntryDate

        public Date getEntryDate()
        Description copied from interface: RegisteredData
        Get the date this item was added to the database. The value is generated at creation time and can't be modified later.
        Specified by:
        getEntryDate in interface RegisteredData
      • setEntryDate

        public void setEntryDate​(Date entryDate)
      • getExternalId

        public String getExternalId()
        Get the external id for this Client item.
        Hibernate: property
        column="`external_id`" type="string" length="255" not-null="true" unique="true"
      • setExternalId

        public void setExternalId​(String externalId)
      • getSupportsDeviceVerification

        public boolean getSupportsDeviceVerification()
        A flag indicating if this client application supports device verification.
        Since:
        3.12
        Hibernate: property
        column="`supports_device_verification`" type="boolean" not-null="true"
      • setSupportsDeviceVerification

        public void setSupportsDeviceVerification​(boolean supportsDeviceVerification)
      • getHelpTexts

        Set<HelpData> getHelpTexts()
        This is the inverse end.
        See Also:
        HelpData.getClient()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`client_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.HelpData"
      • setHelpTexts

        void setHelpTexts​(Set<HelpData> helpTexts)
      • getDevices

        Set<UserDeviceData> getDevices()
        This is the inverse end.
        Since:
        3.12
        See Also:
        UserDeviceData.getClient()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`client_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.UserDeviceData"
      • getSessions

        Set<SessionData> getSessions()
        This is the invers end.
        See Also:
        SessionData.getClient()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`client_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.SessionData"
      • getUserSettings

        Set<UserClientSettingData> getUserSettings()
        This is the inverse end.
        See Also:
        UserClientSettingData.getClient()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`client_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.UserClientSettingData"
      • getDefaultSettings

        Set<ClientDefaultSettingData> getDefaultSettings()
        This is the inverse end.
        See Also:
        ClientDefaultSettingData.getClient()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`client_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.ClientDefaultSettingData"
      • getContexts

        Set<ContextData> getContexts()
        This is the inverse end.
        See Also:
        ContextData.getClient()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`client_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.ContextData"