net.sf.itcb.common.client.destination.SimpleDestinationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of itcb-common-client Show documentation
Show all versions of itcb-common-client Show documentation
This module is the common client module for calling webservices (server module). It defines all generic treatements that allows calling webservices
package net.sf.itcb.common.client.destination;
import java.net.URI;
import java.net.URISyntaxException;
import org.springframework.ws.client.support.destination.DestinationProvider;
/**
* This class allows to parameter the destination URI of a webservice
*
* @author EXT.CTF.PLE
*/
public class SimpleDestinationProvider implements DestinationProvider {
URI destination;
@Override
public URI getDestination() {
return destination;
}
public void setDestinationURI(String uriAsString) throws URISyntaxException {
destination = new URI(uriAsString);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy