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