1 10 11 package org.mule.umo.endpoint; 12 13 import java.io.Serializable ; 14 import java.net.URI ; 15 import java.util.Properties ; 16 17 28 public interface UMOEndpointURI extends Serializable 29 { 30 public static final String PROPERTY_ENDPOINT_NAME = "endpointName"; 31 public static final String PROPERTY_ENDPOINT_URI = "address"; 32 public static final String PROPERTY_CREATE_CONNECTOR = "createConnector"; 33 public static final String PROPERTY_CONNECTOR_NAME = "connector"; 34 public static final String PROPERTY_TRANSFORMERS = "transformers"; 35 public static final String PROPERTY_RESPONSE_TRANSFORMERS = "responseTransformers"; 36 37 String getAddress(); 38 39 String getFilterAddress(); 40 41 String getEndpointName(); 42 43 void setEndpointName(String name); 44 45 Properties getParams(); 46 47 Properties getUserParams(); 48 49 String getScheme(); 50 51 String getSchemeMetaInfo(); 52 53 String getFullScheme(); 54 55 String getAuthority(); 56 57 String getHost(); 58 59 int getPort(); 60 61 String getPath(); 62 63 String getQuery(); 64 65 String getUserInfo(); 66 67 String getTransformers(); 68 69 String getResponseTransformers(); 70 71 int getCreateConnector(); 72 73 URI getUri(); 74 75 String getConnectorName(); 76 77 String getResourceInfo(); 78 79 String getUsername(); 80 81 String getPassword(); 82 } 83 | Popular Tags |