|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Protocol | |
---|---|
org.restlet | Core classes of the API. |
org.restlet.data | Element of information handled by a component via a connector. |
org.restlet.service | Service classes used by Applications and Containers. |
org.restlet.util | Utility classes and interfaces used in the rest of the API. |
Uses of Protocol in org.restlet |
---|
Methods in org.restlet that return types with arguments of type Protocol | |
---|---|
List<Protocol> |
Connector.getProtocols()
Returns the protocols simultaneously supported. |
Constructors in org.restlet with parameters of type Protocol | |
---|---|
Client(Context context,
Protocol protocol)
Constructor. |
|
Client(Protocol protocol)
Constructor. |
|
Server(Context context,
Protocol protocol,
int port,
Restlet target)
Constructor. |
|
Server(Context context,
Protocol protocol,
Restlet target)
Constructor using the protocol's default port. |
|
Server(Context context,
Protocol protocol,
String address,
int port,
Restlet target)
Constructor. |
|
Server(Protocol protocol,
int port,
Restlet target)
Constructor. |
|
Server(Protocol protocol,
Restlet target)
Constructor using the protocol's default port. |
|
Server(Protocol protocol,
String address,
int port,
Restlet target)
Constructor. |
|
Server(Protocol protocol,
String address,
Restlet target)
Constructor using the protocol's default port. |
Constructor parameters in org.restlet with type arguments of type Protocol | |
---|---|
Client(Context context,
List<Protocol> protocols)
Constructor. |
|
Client(List<Protocol> protocols)
Constructor. |
|
Connector(Context context,
List<Protocol> protocols)
Constructor. |
|
Server(Context context,
List<Protocol> protocols,
int port,
Restlet target)
Constructor. |
|
Server(Context context,
List<Protocol> protocols,
String address,
int port,
Restlet target)
Constructor. |
|
Server(List<Protocol> protocols,
int port,
Restlet target)
Constructor. |
|
Server(List<Protocol> protocols,
String address,
int port,
Restlet target)
Constructor. |
Uses of Protocol in org.restlet.data |
---|
Fields in org.restlet.data declared as Protocol | |
---|---|
static Protocol |
Protocol.AJP
AJP 1.3 protocol to communicate with Apache HTTP server or Microsoft IIS. |
static Protocol |
Protocol.ALL
All protocols wildcard. |
static Protocol |
Protocol.CLAP
CLAP (ClassLoader Access Protocol) is a custom scheme to access to representations via classloaders. |
static Protocol |
Protocol.FILE
Local file system access protocol. |
static Protocol |
Protocol.FTP
FILE is a standard scheme to access to representations stored in the file system (locally most of the time). |
static Protocol |
Protocol.HTTP
HTTP protocol. |
static Protocol |
Protocol.HTTPS
HTTPS protocol (via SSL socket). |
static Protocol |
Protocol.JAR
JAR (Java ARchive) is a common scheme to access to representations inside archive files. |
static Protocol |
Protocol.JDBC
JDBC protocol. |
static Protocol |
Protocol.SMTP
SMTP protocol. |
static Protocol |
Protocol.SMTP_STARTTLS
SMTP with STARTTLS protocol (started with a plain socket). |
static Protocol |
Protocol.SMTPS
SMTPS protocol (via SSL/TLS socket). |
static Protocol |
Protocol.WAR
Local Web Archive access protocol. |
Methods in org.restlet.data that return Protocol | |
---|---|
Protocol |
Request.getProtocol()
Returns the protocol by first returning the baseRef.schemeProtocol property if it is set, or the resourceRef.schemeProtocol property otherwise. |
Protocol |
Reference.getSchemeProtocol()
Returns the protocol associated with the scheme component. |
static Protocol |
Protocol.valueOf(String schemeName)
Creates the protocol associated to a URI scheme name. |
Methods in org.restlet.data with parameters of type Protocol | |
---|---|
void |
Reference.setProtocol(Protocol protocol)
Sets the scheme component based on this protocol. |
Uses of Protocol in org.restlet.service |
---|
Methods in org.restlet.service that return types with arguments of type Protocol | |
---|---|
List<Protocol> |
ConnectorService.getClientProtocols()
Returns the list of required client protocols. |
List<Protocol> |
ConnectorService.getServerProtocols()
Returns the list of required server protocols. |
Uses of Protocol in org.restlet.util |
---|
Methods in org.restlet.util that return Protocol | |
---|---|
Protocol |
WrapperRequest.getProtocol()
Returns the protocol by first returning the baseRef.schemeProtocol property if it is set, or the resourceRef.schemeProtocol property otherwise. |
Methods in org.restlet.util with parameters of type Protocol | |
---|---|
Server |
ServerList.add(Protocol protocol)
Adds a new server connector in the map supporting the given protocol. |
Client |
ClientList.add(Protocol protocol)
Adds a new client connector in the map supporting the given protocol. |
Server |
ServerList.add(Protocol protocol,
int port)
Adds a new server connector in the map supporting the given protocol on the specified port. |
Server |
ServerList.add(Protocol protocol,
String address,
int port)
Adds a new server connector in the map supporting the given protocol on the specified IP address and port. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |