/** * Sets the URI of the endpoint to use * * @param uri the endpoint URI to use */ @Required public void setUri(String uri) { clear(); this.uri = uri; }
/** * Sets the name of the endpoint within the registry (such as the Spring ApplicationContext or * JNDI) to use * * @param ref the reference name to use */ public void setRef(String ref) { clear(); this.ref = ref; }