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.
common-fw-clients/src/main/java/org/gcube/common/clients/fw/Utils.java

26 lines
531 B
Java

package org.gcube.common.clients.fw;
import javax.xml.ws.EndpointReference;
import org.gcube.common.clients.cache.DefaultEndpointCache;
import org.gcube.common.clients.cache.EndpointCache;
/**
* Library-wide utilities
*
* @author Fabio Simeoni
*
*/
public class Utils {
/**
* Shared endpoint cache.
*/
public static EndpointCache<EndpointReference> globalCache = new DefaultEndpointCache<EndpointReference>();
/**
* Context path for gCore services
*/
public static String contextPath = "/wsrf/services/";
}