Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 8beb1e2

Browse files
committed
fix comment
1 parent 760329d commit 8beb1e2

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

src/java/main/com/topcoder/direct/services/view/action/my/MyCreatedChallengesAction.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import org.codehaus.jackson.JsonNode;
1515

1616
import javax.servlet.http.Cookie;
17-
import java.net.URLEncoder;
1817
import java.text.DateFormat;
1918
import java.text.NumberFormat;
2019
import java.text.SimpleDateFormat;

src/java/main/com/topcoder/direct/services/view/dto/my/BaseRestResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public Metadata getMetadata() {
2222
}
2323

2424
/**
25-
* Gets the metadata.
25+
* Set the metadata.
2626
*
2727
* @param metadata the metadata.
2828
*/

src/java/main/com/topcoder/direct/services/view/dto/my/Token.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,55 @@
1+
/*
2+
* Copyright (C) 2017 TopCoder Inc., All Rights Reserved.
3+
*/
14
package com.topcoder.direct.services.view.dto.my;
25

6+
7+
/**
8+
* Model for jwt token
9+
*/
310
public class Token {
11+
/**
12+
* Id
13+
*/
414
private String id;
15+
16+
/**
17+
* Token
18+
*/
519
private String token;
620

21+
/**
22+
* Get Id
23+
*
24+
* @return
25+
*/
726
public String getId() {
827
return id;
928
}
1029

30+
/**
31+
* Set Id
32+
*
33+
* @param id
34+
*/
1135
public void setId(String id) {
1236
this.id = id;
1337
}
1438

39+
/**
40+
* Get Token
41+
*
42+
* @return
43+
*/
1544
public String getToken() {
1645
return token;
1746
}
1847

48+
/**
49+
* Set Token
50+
*
51+
* @param token
52+
*/
1953
public void setToken(String token) {
2054
this.token = token;
2155
}

0 commit comments

Comments
 (0)