refactored package

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/portal-auth-library@141716 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2017-01-23 17:11:40 +00:00
parent 6855acb1a9
commit 4b929fac59
3 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package org.gcube.portal.auth.library;
package org.gcube.portal.auth;
import static org.gcube.resources.discovery.icclient.ICFactory.clientFor;
import static org.gcube.resources.discovery.icclient.ICFactory.queryFor;
@ -91,7 +91,7 @@ public class AuthUtil {
* @param redirectionURL the string in redirect
* @return a map containing the attributes, takes into account escaped characters
*/
private static Map<String, String> getQueryMap(String redirectionURL) {
public static Map<String, String> getQueryMap(String redirectionURL) {
String decodedURL = "";
try {
decodedURL = java.net.URLDecoder.decode(redirectionURL, "UTF-8");

View File

@ -1,4 +1,4 @@
package org.gcube.portal.auth.library;
package org.gcube.portal.auth;
import java.io.Serializable;

View File

@ -1,4 +1,7 @@
package org.gcube.portal.auth.library;
package org.gcube.portal.auth;
import org.gcube.portal.auth.AuthUtil;
import org.gcube.portal.auth.RequestingApp;
import junit.framework.Test;
import junit.framework.TestCase;