|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Protocol | |
|---|---|
| org.restlet.data | Information exchanged by components. |
| org.restlet.engine.adapter | Adapters between low-level HTTP calls and high-level Restlet Request and Response objects. |
| org.restlet.engine.connector | Integration with Java URLConnection class. |
| org.restlet.resource | Client and server resource classes. |
| org.restlet.service | Services used by applications and components. |
| org.restlet.util | Various utility classes. |
| 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
FILE is a standard scheme to access to representations stored in the file system (locally most of the time). |
static Protocol |
Protocol.FTP
FTP protocol. |
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.OBAP
OBAP (OSGi Bundle Access Protocol) is a custom scheme to access to representations via bundles referenced using their symbolic name. |
static Protocol |
Protocol.POP
POP protocol. |
static Protocol |
Protocol.POPS
POPS protocol (via SSL/TLS socket).. |
static Protocol |
Protocol.RIAP
RIAP (Restlet Internal Access Protocol) is a custom scheme to access representations via internal calls to virtual hosts/components. |
static Protocol |
Protocol.SDC
SDC (Secure Data Connector) protocol. |
static Protocol |
Protocol.SIP
SIP protocol. |
static Protocol |
Protocol.SIPS
SIPS protocol (via SSL socket). |
static Protocol |
Protocol.SMTP
SMTP protocol. |
static Protocol |
Protocol.SMTPS
SMTPS protocol (via SSL/TLS socket). |
static Protocol |
Protocol.WAR
Local Web Archive access protocol. |
static Protocol |
Protocol.ZIP
ZIP is a special scheme to access to representations inside Zip archive files. |
| Methods in org.restlet.data that return Protocol | |
|---|---|
Protocol |
RecipientInfo.getProtocol()
Returns the protocol used to communicate with the recipient. |
Protocol |
Reference.getSchemeProtocol()
Returns the protocol associated with the scheme component. |
static Protocol |
Protocol.valueOf(String name)
Creates the protocol associated to a URI scheme name. |
static Protocol |
Protocol.valueOf(String name,
String version)
Creates the protocol associated to a URI scheme name. |
| Methods in org.restlet.data with parameters of type Protocol | |
|---|---|
void |
RecipientInfo.setProtocol(Protocol protocol)
Sets the protocol used to communicate with the recipient. |
void |
Reference.setProtocol(Protocol protocol)
Sets the scheme component based on this protocol. |
| Constructors in org.restlet.data with parameters of type Protocol | |
|---|---|
RecipientInfo(Protocol protocol,
String name,
String agent)
Constructor. |
|
Reference(Protocol protocol,
String hostName)
Constructor for a protocol and host name. |
|
Reference(Protocol protocol,
String hostName,
int hostPort)
Constructor for a protocol, host name and host port |
|
| Uses of Protocol in org.restlet.engine.adapter |
|---|
| Methods in org.restlet.engine.adapter that return Protocol | |
|---|---|
Protocol |
Call.getProtocol()
Returns the exact protocol (HTTP or HTTPS). |
| Methods in org.restlet.engine.adapter with parameters of type Protocol | |
|---|---|
void |
Call.setProtocol(Protocol protocol)
Sets the exact protocol used (HTTP or HTTPS). |
| Uses of Protocol in org.restlet.engine.connector |
|---|
| Methods in org.restlet.engine.connector that return types with arguments of type Protocol | |
|---|---|
List<Protocol> |
ConnectorHelper.getProtocols()
Returns the protocols simultaneously supported. |
| Uses of Protocol in org.restlet.resource |
|---|
| Methods in org.restlet.resource that return Protocol | |
|---|---|
Protocol |
Resource.getProtocol()
Returns the protocol by first returning the resourceRef.schemeProtocol property if it is set, or the baseRef.schemeProtocol property otherwise. |
| Methods in org.restlet.resource with parameters of type Protocol | |
|---|---|
void |
ClientResource.setProtocol(Protocol protocol)
Sets the protocol used or to be used. |
| 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 modifiable list of required client protocols. |
List<Protocol> |
ConnectorService.getServerProtocols()
Returns the modifiable list of required server protocols. |
| Method parameters in org.restlet.service with type arguments of type Protocol | |
|---|---|
void |
ConnectorService.setClientProtocols(List<Protocol> clientProtocols)
Sets the modifiable list of required client protocols. |
void |
ConnectorService.setServerProtocols(List<Protocol> serverProtocols)
Sets the modifiable 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 | |
|---|---|
Client |
ClientList.add(Protocol protocol)
Adds a new client connector in the map supporting the given protocol. |
Server |
ServerList.add(Protocol protocol)
Adds a new server 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. |
void |
WrapperRequest.setProtocol(Protocol protocol)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||