Package com.atlassian.confluence.user
Class UserVerificationToken
java.lang.Object
com.atlassian.confluence.user.UserVerificationToken
- All Implemented Interfaces:
Serializable
Represents a verification token issued to a user or potential user. This only refers to the username, rather
than the
ConfluenceUser
, since a ConfluenceUser
may not yet exist.- Since:
- 5.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionempty constructor - to make Jackson2 happyUserVerificationToken
(UserVerificationTokenType tokenType, String userName, String tokenString, Date issueDate) -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
hashCode()
boolean
matchesToken
(String tokenStr) toString()
boolean
wasIssuedAfter
(Date date)
-
Constructor Details
-
UserVerificationToken
public UserVerificationToken()empty constructor - to make Jackson2 happy- Since:
- 8.2.0
-
UserVerificationToken
public UserVerificationToken(UserVerificationTokenType tokenType, String userName, String tokenString, Date issueDate)
-
-
Method Details