Searched defs:scheme (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/system/
H A DMQUrl.java58 private String scheme = "mq"; field in class:MQUrl
94 * @param scheme scheme of the connection.
96 public void setScheme(String scheme) { argument
97 this.scheme = scheme;
112 * i.e> scheme://host:port/service
123 return scheme + "://" + host;
127 return scheme + "://" + host + ":" + port + "/";
130 return scheme
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DConnector.java81 * <code>response</code>, <code>scheme</code>,
194 * Return the scheme that will be assigned to requests received
201 * Set the scheme that will be assigned to requests received through
204 * @param scheme The new scheme
206 public void setScheme(String scheme); argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DConnector.java259 * The request scheme that will be set on all requests received
262 private String scheme = "http"; field in class:Connector
994 * Return the scheme that will be assigned to requests received
998 return scheme;
1002 * Set the scheme that will be assigned to requests received through
1005 * @param scheme The new scheme
1007 public void setScheme(String scheme) { argument
1008 this.scheme = scheme;
[all...]

Completed in 21 milliseconds