Package org.osgi.service.servlet.runtime
Class HttpServiceRuntimeConstants
java.lang.Object
org.osgi.service.servlet.runtime.HttpServiceRuntimeConstants
Defines standard names for Http Runtime Service constants.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Http Runtime Service service property specifying the endpoints upon which the Servlet Whiteboard implementation is listening. -
Method Summary
-
Field Details
-
HTTP_SERVICE_ENDPOINT
Http Runtime Service service property specifying the endpoints upon which the Servlet Whiteboard implementation is listening.An endpoint value is a URL or a relative path, to which the Servlet Whiteboard implementation is listening. For example,
http://192.168.1.10:8080/
or/myapp/
. A relative path may be used if the scheme and authority parts of the URL are not known, e.g. in a bridged Servlet Whiteboard implementation. If the Servlet Whiteboard implementation is serving the root context and neither scheme nor authority is known, the value of the property is "/". Both, a URL and a relative path, must end with a slash.An Servlet Whiteboard implementation can be listening on multiple endpoints.
The value of this service property must be of type
String
,String[]
, orCollection<String>
.- See Also:
-