You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcat-client/src/main/java/org/gcube/gcat/client/License.java

24 lines
485 B
Java

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);
}
}