my-vres/src/main/java/org/gcube/portlet/user/my_vres/client/GetParameters.java

50 lines
944 B
Java

package org.gcube.portlet.user.my_vres.client;
public class GetParameters {
String redirectURI;
String state;
String context;
String clientId;
String clientSecret;
public GetParameters(String redirectURI, String state, String context, String clientId, String clientSecret) {
super();
this.redirectURI = redirectURI;
this.state = state;
this.context = context;
this.clientId = clientId;
this.clientSecret = clientSecret;
}
public String getRedirectURI() {
return redirectURI;
}
public String getState() {
return state;
}
public String getContext() {
return context;
}
public String getClientId() {
return clientId;
}
public String getClientSecret() {
return clientSecret;
}
@Override
public String toString() {
return "GetParameters [redirectURI=" + redirectURI + ", state=" + state + ", context=" + context + ", clientId="
+ clientId + ", clientSecret=" + clientSecret + "]";
}
}