-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matteo Giordano
committed
May 30, 2018
1 parent
9433532
commit 2c39dae
Showing
2 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
cmw-dto/src/main/java/com/liberologico/cloudesire/cmw/model/dto/VerificationRetryDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package com.liberologico.cloudesire.cmw.model.dto; | ||
|
||
public final class VerificationRetryDTO | ||
{ | ||
private String username; | ||
|
||
private String email; | ||
|
||
public static VerificationRetryDTO forUsername( String username ) | ||
{ | ||
return new VerificationRetryDTO( username, null ); | ||
} | ||
|
||
public static VerificationRetryDTO forEmail( String email ) | ||
{ | ||
return new VerificationRetryDTO( null, email ); | ||
} | ||
|
||
private VerificationRetryDTO( String username, String email ) | ||
{ | ||
this.username = username; | ||
this.email = email; | ||
} | ||
|
||
private VerificationRetryDTO() | ||
{ | ||
} | ||
|
||
public String getUsername() | ||
{ | ||
return username; | ||
} | ||
|
||
public String getEmail() | ||
{ | ||
return email; | ||
} | ||
} |