Uses of Class
org.restlet.Client
-
Packages that use Client Package Description org.restlet Core classes of the API.org.restlet.engine Implementation of Restlet API.org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects.org.restlet.engine.component Supports Restlet components.org.restlet.engine.connector Integration with Java URLConnection class.org.restlet.engine.local Supports local connectors and resources.org.restlet.ext.atom Support for the Atom syndication and the AtomPub (Atom Publication Protocol) standards in their 1.0 version.org.restlet.ext.httpclient Integration with Apache HTTP Client @minor-version@.org.restlet.ext.javamail Integration with JavaMail @minor-version@ (POP3 and SMTP clients).org.restlet.ext.jetty Integration with Jetty @minor-version@ which is a new implementation of the popular Jetty web server.org.restlet.ext.nio Integration with Java NIO package.org.restlet.ext.nio.internal.way org.restlet.util Various utility classes. -
-
Uses of Client in org.restlet
Fields in org.restlet with type parameters of type Client Modifier and Type Field Description private RestletHelper<Client>Client. helperThe helper provided by the implementation.Methods in org.restlet that return types with arguments of type Client Modifier and Type Method Description private RestletHelper<Client>Client. getHelper()Returns the helper provided by the implementation. -
Uses of Client in org.restlet.engine
Fields in org.restlet.engine with type parameters of type Client Modifier and Type Field Description private java.util.List<ConnectorHelper<Client>>Engine. registeredClientsList of available client connectors.Methods in org.restlet.engine that return types with arguments of type Client Modifier and Type Method Description ConnectorHelper<Client>Engine. createHelper(Client client, java.lang.String helperClass)Creates a new helper for a given client connector.java.util.List<ConnectorHelper<Client>>Engine. getRegisteredClients()Returns the list of available client connectors.Methods in org.restlet.engine with parameters of type Client Modifier and Type Method Description ConnectorHelper<Client>Engine. createHelper(Client client, java.lang.String helperClass)Creates a new helper for a given client connector.Method parameters in org.restlet.engine with type arguments of type Client Modifier and Type Method Description voidEngine. setRegisteredClients(java.util.List<ConnectorHelper<Client>> registeredClients)Sets the list of available client helpers. -
Uses of Client in org.restlet.engine.adapter
Constructors in org.restlet.engine.adapter with parameters of type Client Constructor Description HttpClientHelper(Client client)Constructor. -
Uses of Client in org.restlet.engine.component
Methods in org.restlet.engine.component that return Client Modifier and Type Method Description ClientClientRoute. getClient()Returns the target client.Methods in org.restlet.engine.component with parameters of type Client Modifier and Type Method Description voidClientRoute. setNext(Client next)Sets the next client.Constructors in org.restlet.engine.component with parameters of type Client Constructor Description ClientRoute(Router router, Client target)Constructor. -
Uses of Client in org.restlet.engine.connector
Constructors in org.restlet.engine.connector with parameters of type Client Constructor Description ClientHelper(Client client)Constructor.FtpClientHelper(Client client)Constructor.HttpClientHelper(Client client)Constructor. -
Uses of Client in org.restlet.engine.local
Constructors in org.restlet.engine.local with parameters of type Client Constructor Description ClapClientHelper(Client client)Constructor.EntityClientHelper(Client client)Constructor.FileClientHelper(Client client)Constructor.LocalClientHelper(Client client)Constructor.RiapClientHelper(Client client)Constructor.ZipClientHelper(Client client)Constructor. -
Uses of Client in org.restlet.ext.atom
Methods in org.restlet.ext.atom with parameters of type Client Modifier and Type Method Description voidService. setClientDispatcher(Client clientDispatcher)Sets the client HTTP dispatcher.Constructors in org.restlet.ext.atom with parameters of type Client Constructor Description Categories(Client clientDispatcher, java.lang.String categoriesUri)Constructor.Entry(Client clientDispatcher, java.lang.String entryUri)Constructor.Feed(Client clientDispatcher, java.lang.String feedUri)Constructor.Service(Client clientDispatcher)Constructor.Service(Client clientDispatcher, java.lang.String serviceUri)Constructor. -
Uses of Client in org.restlet.ext.httpclient
Constructors in org.restlet.ext.httpclient with parameters of type Client Constructor Description HttpClientHelper(Client client)Constructor. -
Uses of Client in org.restlet.ext.javamail
Constructors in org.restlet.ext.javamail with parameters of type Client Constructor Description JavaMailClientHelper(Client client)Deprecated.Constructor. -
Uses of Client in org.restlet.ext.jetty
Constructors in org.restlet.ext.jetty with parameters of type Client Constructor Description HttpClientHelper(Client client)Constructor. -
Uses of Client in org.restlet.ext.nio
Methods in org.restlet.ext.nio that return types with arguments of type Client Modifier and Type Method Description Connection<Client>ClientConnectionHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Connection<Client>HttpsClientHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.protected Connection<Client>ClientConnectionHelper. getBestConnection(Request request)Deprecated.Tries to reuse an existing connection for the given request, or creates a new one.Method parameters in org.restlet.ext.nio with type arguments of type Client Modifier and Type Method Description InboundWayHttpClientHelper. createInboundWay(Connection<Client> connection, int bufferSize)Deprecated.InboundWayHttpsClientHelper. createInboundWay(Connection<Client> connection, int bufferSize)Deprecated.OutboundWayHttpClientHelper. createOutboundWay(Connection<Client> connection, int bufferSize)Deprecated.OutboundWayHttpsClientHelper. createOutboundWay(Connection<Client> connection, int bufferSize)Deprecated.Constructors in org.restlet.ext.nio with parameters of type Client Constructor Description ClientConnectionHelper(Client connector)Deprecated.Constructor.HttpClientHelper(Client client)Deprecated.Constructor.HttpsClientHelper(Client client)Deprecated.Constructor. -
Uses of Client in org.restlet.ext.nio.internal.way
Methods in org.restlet.ext.nio.internal.way that return types with arguments of type Client Modifier and Type Method Description Connection<Client>ClientInboundWay. getConnection()Deprecated.Connection<Client>ClientOutboundWay. getConnection()Deprecated.SslConnection<Client>HttpsClientInboundWay. getConnection()Deprecated.SslConnection<Client>HttpsClientOutboundWay. getConnection()Deprecated.Constructor parameters in org.restlet.ext.nio.internal.way with type arguments of type Client Constructor Description HttpClientInboundWay(Connection<Client> connection, int bufferSize)Deprecated.Constructor.HttpsClientInboundWay(Connection<Client> connection, int bufferSize)Deprecated.Constructor. -
Uses of Client in org.restlet.util
Methods in org.restlet.util that return Client Modifier and Type Method Description ClientClientList. add(Protocol protocol)Adds a new client connector in the map supporting the given protocol.Methods in org.restlet.util with parameters of type Client Modifier and Type Method Description booleanClientList. add(Client client)
-