Skip to content

Commit

Permalink
Add the missing @deprecated Javadoc tag. (resolve SonarQube Major iss…
Browse files Browse the repository at this point in the history
…ues) #593

(cherry picked from commit 5e0eedd)
  • Loading branch information
yoshikawaa committed Jul 25, 2016
1 parent 356cf9c commit 25349f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ public interface TransactionTokenContext {

/**
* Defines the contract for implementations of token creation
* @deprecated not work properly
*/
@Deprecated
void createToken();

/**
* Defines the contract for implementations of token removal
* @deprecated not work properly
*/
@Deprecated
void removeToken();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public TransactionTokenInfo getTokenInfo() {
* If the <code>receivedToken</code> contains a valid token, sets the instruction to create a new
* <code>TransactionToken</code>
* @see org.terasoluna.gfw.web.token.transaction.TransactionTokenContext#createToken()
* @deprecated not work properly
*/
@Deprecated
@Override
Expand All @@ -95,6 +96,7 @@ public void createToken() {
* set reserveCommand to
* {@link org.terasoluna.gfw.web.token.transaction.TransactionTokenContextImpl.ReserveCommand#REMOVE_TOKEN}
* @see org.terasoluna.gfw.web.token.transaction.TransactionTokenContext#removeToken()
* @deprecated not work properly
*/
@Deprecated
@Override
Expand All @@ -104,6 +106,7 @@ public void removeToken() {

/**
* rollback resrveCommand to default
* @deprecated not work properly
*/
@Deprecated
public void cancelReservation() {
Expand Down

0 comments on commit 25349f8

Please sign in to comment.