All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.itcb.common.client.destination.SimpleDestinationProvider Maven / Gradle / Ivy

Go to download

This module is the common client module for calling webservices (server module). It defines all generic treatements that allows calling webservices

There is a newer version: 0.7.3
Show newest version
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