Skip to content

Commit

Permalink
get rid of "apiServer" property
Browse files Browse the repository at this point in the history
  • Loading branch information
OhadR committed Nov 18, 2013
1 parent 05f546f commit 6bbc057
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public class AuthProperties
@Value("${com.ohadr.oauth2.token.refreshTimeToLive}")
private int refreshTokenTimeToLive;

@Value("${com.ohadr.oauth2.apiServer}")
private String apiServer;

public String getTokenIssuer()
{
Expand Down Expand Up @@ -48,15 +46,4 @@ public void setRefreshTokenTimeToLive(int refreshTokenTimeToLive)
this.refreshTokenTimeToLive = refreshTokenTimeToLive;
}

public String getApiServer()
{
return apiServer;
}

public void setApiServer(String apiServer)
{
this.apiServer = apiServer;
}


}

0 comments on commit 6bbc057

Please sign in to comment.