gcat-client/src/main/java/org/gcube/gcat/client/License.java

24 lines
485 B
Java
Raw Permalink Normal View History

package org.gcube.gcat.client;
import java.net.MalformedURLException;
import java.net.URL;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class License extends GCatClient implements org.gcube.gcat.api.interfaces.License {
public License() throws MalformedURLException {
super(LICENSES);
}
public License(URL enforcedServiceURL) throws MalformedURLException {
super(enforcedServiceURL, LICENSES);
}
@Override
public String list() {
return super.list(null);
}
}