package org.gcube.common.clients.fw.builders; import javax.xml.ws.EndpointReference; import javax.xml.ws.wsaddressing.W3CEndpointReference; import org.gcube.common.clients.builders.AbstractStatelessBuilder; import org.gcube.common.clients.cache.EndpointCache; import org.gcube.common.clients.config.Property; import org.gcube.common.clients.fw.Utils; import org.gcube.common.clients.fw.plugin.Plugin; import org.gcube.common.clients.fw.queries.StatelessQuery; /** * Default implementation of {@link StatelessBuilder}. * * @author Fabio Simeoni * * @param the type of service stubs * @param

the type of service proxies */ public class StatelessBuilderImpl extends AbstractStatelessBuilder implements StatelessBuilder

{ /** * Constructs an instance with a given {@link Plugin} and zero or more default {@link Property}s. * @param plugin the {@link Plugin} * @param properties the properties */ public StatelessBuilderImpl(Plugin plugin, Property ... properties) { this(plugin,new StatelessQuery(plugin),Utils.globalCache,properties); } /** * Constructs an instance with a given {@link Plugin}, a {@link StatelessQuery}, and zero or more default {@link Property}s. * @param plugin the {@link Plugin} * @param query the {@link StatelessQuery} * @param properties the properties */ public StatelessBuilderImpl(Plugin plugin, StatelessQuery query, Property ... properties) { this(plugin,query,Utils.globalCache,properties); } /** * Constructs an instance with a given {@link Plugin}, an {@link EndpointCache}, and zero or more default {@link Property}s. * @param plugin the {@link Plugin} * @param cache the {@link EndpointCache} * @param properties the properties */ public StatelessBuilderImpl(Plugin plugin,EndpointCache cache,Property ... properties) { this(plugin,new StatelessQuery(plugin),cache,properties); } /** * Constructs an instance with a given {@link Plugin},a {@link StatelessQuery}, an {@link EndpointCache}, and zero or more default {@link Property}s. * @param plugin the {@link Plugin} * @param query the {@link StatelessQuery} * @param cache the {@link EndpointCache} * @param properties the properties */ public StatelessBuilderImpl(Plugin plugin,StatelessQuery query,EndpointCache cache,Property ... properties) { super(plugin,cache,query,properties); } @Override protected EndpointReference convertAddress(W3CEndpointReference address) { return address; } @Override protected String contextPath() { return Utils.contextPath; } }