diff --git a/conf/ApplicationServer.properties b/conf/ApplicationServer.properties
index e43cb4b2b..96290c3db 100644
--- a/conf/ApplicationServer.properties
+++ b/conf/ApplicationServer.properties
@@ -46,5 +46,3 @@ SSO_DOMAIN = @ApplicationServer.SSO_DOMAIN@
JWT_COOKIE_KEY = @ApplicationServer.JWT_COOKIE_KEY@
JWT_V3_COOKIE_KEY = @ApplicationServer.JWT_V3_COOKIE_KEY@
-
-DIRECT_API_SERVICE_ENDPOINT = @ApplicationServer.DIRECT_API_SERVICE_ENDPOINT@
diff --git a/src/java/main/com/topcoder/direct/services/configs/ServerConfiguration.java b/src/java/main/com/topcoder/direct/services/configs/ServerConfiguration.java
index 8ef0ae326..7029d99bd 100644
--- a/src/java/main/com/topcoder/direct/services/configs/ServerConfiguration.java
+++ b/src/java/main/com/topcoder/direct/services/configs/ServerConfiguration.java
@@ -14,7 +14,6 @@
* Version 1.1 (TopCoder Direct - My Created Challenges)
*
* - Added {@link #JWT_COOOKIE_KEY}
- * - Added {@link #DIRECT_API_SERVICE_ENDPOINT}
*
*
*
@@ -24,8 +23,8 @@
*
*
*
- * @author GreatKevin, TCCoder
- * @version 1.2
+ * @author GreatKevin, TCCoder
+ * @version 1.2
* @since 1.0 (Tokenize the server part of URLs used in TopCoder Direct)
*/
public class ServerConfiguration extends ApplicationServer {
@@ -58,12 +57,5 @@ public class ServerConfiguration extends ApplicationServer {
*/
public static String JWT_COOOKIE_KEY = bundle.getProperty("JWT_COOKIE_KEY", "tcjwt");
- /**
- * The end point URL of the direct API. The default value is set to empty
- *
- * @since 1.1
- */
- public static String DIRECT_API_SERVICE_ENDPOINT = bundle.getProperty("DIRECT_API_SERVICE_ENDPOINT", "");
-
public static String JWT_V3_COOKIE_KEY = bundle.getProperty("JWT_V3_COOKIE_KEY", "v3jwt");
}
diff --git a/token.properties.docker b/token.properties.docker
index e01b0fe57..d2930e9f5 100644
--- a/token.properties.docker
+++ b/token.properties.docker
@@ -337,7 +337,6 @@
#####################################
@ApplicationServer.JWT_COOKIE_KEY@=tcjwt_vm
@ApplicationServer.JWT_V3_COOKIE_KEY@=v3jwt
-@ApplicationServer.DIRECT_API_SERVICE_ENDPOINT@= direct.dev.topcoder.com/direct/api/v2/
@memberSearchApiUrl@=https://tc-api.cloud.topcoder.com:8443/v3/members/_suggest/
@groupMemberSearchApiUrl@=https://cockpit.cloud.topcoder.com/direct/group/member?handle=
diff --git a/token.properties.example b/token.properties.example
index 66a053d19..a2e9b4c1c 100644
--- a/token.properties.example
+++ b/token.properties.example
@@ -304,8 +304,6 @@
@ApplicationServer.JWT_COOKIE_KEY@=tcjwt
@ApplicationServer.JWT_V3_COOKIE_KEY@=v3jwt
-@ApplicationServer.DIRECT_API_SERVICE_ENDPOINT@= direct.dev.topcoder.com/direct/api/v2/
-
#######################################
# securityGroupApplicationContext.xml #