Uses of Class
org.restlet.Server
-
Packages that use Server 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.connector Integration with Java URLConnection class.org.restlet.engine.local Supports local connectors and resources.org.restlet.ext.jetty Integration with Jetty @minor-version@ which is a new implementation of the popular Jetty web server.org.restlet.ext.jetty.internal org.restlet.ext.nio Integration with Java NIO package.org.restlet.ext.nio.internal.request org.restlet.ext.nio.internal.way org.restlet.util Various utility classes. -
-
Uses of Server in org.restlet
Fields in org.restlet with type parameters of type Server Modifier and Type Field Description private RestletHelper<Server>Server. helperThe helper provided by the implementation.Methods in org.restlet that return types with arguments of type Server Modifier and Type Method Description private RestletHelper<Server>Server. getHelper()Returns the internal server. -
Uses of Server in org.restlet.engine
Fields in org.restlet.engine with type parameters of type Server Modifier and Type Field Description private java.util.List<ConnectorHelper<Server>>Engine. registeredServersList of available server connectors.Methods in org.restlet.engine that return types with arguments of type Server Modifier and Type Method Description ConnectorHelper<Server>Engine. createHelper(Server server, java.lang.String helperClass)Creates a new helper for a given server connector.java.util.List<ConnectorHelper<Server>>Engine. getRegisteredServers()Returns the list of available server connectors.Methods in org.restlet.engine with parameters of type Server Modifier and Type Method Description ConnectorHelper<Server>Engine. createHelper(Server server, java.lang.String helperClass)Creates a new helper for a given server connector.Method parameters in org.restlet.engine with type arguments of type Server Modifier and Type Method Description voidEngine. setRegisteredServers(java.util.List<ConnectorHelper<Server>> registeredServers)Sets the list of available server helpers. -
Uses of Server in org.restlet.engine.adapter
Constructors in org.restlet.engine.adapter with parameters of type Server Constructor Description HttpServerHelper(Server server)Constructor.ServerCall(Server server)Constructor. -
Uses of Server in org.restlet.engine.connector
Constructors in org.restlet.engine.connector with parameters of type Server Constructor Description HttpExchangeCall(Server server, com.sun.net.httpserver.HttpExchange exchange)Constructor.HttpExchangeCall(Server server, com.sun.net.httpserver.HttpExchange exchange, boolean confidential)Constructor.HttpServerHelper(Server server)Constructor.HttpsServerHelper(Server server)Constructor.NetServerHelper(Server server)Constructor.ServerHelper(Server server)Constructor. -
Uses of Server in org.restlet.engine.local
Constructors in org.restlet.engine.local with parameters of type Server Constructor Description RiapServerHelper(Server server)Constructor. -
Uses of Server in org.restlet.ext.jetty
Constructors in org.restlet.ext.jetty with parameters of type Server Constructor Description HttpServerHelper(Server server)Constructor.HttpsServerHelper(Server server)Constructor.JettyServerHelper(Server server)Constructor. -
Uses of Server in org.restlet.ext.jetty.internal
Constructors in org.restlet.ext.jetty.internal with parameters of type Server Constructor Description JettyHandler(Server server)Constructor for HTTP server connectors.JettyHandler(Server server, boolean secure)Constructor for HTTP server connectors.JettyServerCall(Server server, org.eclipse.jetty.server.HttpChannel channel)Constructor. -
Uses of Server in org.restlet.ext.nio
Methods in org.restlet.ext.nio that return types with arguments of type Server Modifier and Type Method Description Connection<Server>HttpsServerHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Connection<Server>ServerConnectionHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Method parameters in org.restlet.ext.nio with type arguments of type Server Modifier and Type Method Description protected booleanHttpServerHelper. canHandle(Connection<Server> connection, Response response)Deprecated.protected abstract booleanServerConnectionHelper. canHandle(Connection<Server> connection, Response response)Deprecated.Indicates if the connection can handle the given response at this point in time.InboundWayHttpServerHelper. createInboundWay(Connection<Server> connection, int bufferSize)Deprecated.InboundWayHttpsServerHelper. createInboundWay(Connection<Server> connection, int bufferSize)Deprecated.OutboundWayHttpServerHelper. createOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.OutboundWayHttpsServerHelper. createOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.RequestHttpServerHelper. createRequest(Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.RequestHttpsServerHelper. createRequest(Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.abstract RequestServerConnectionHelper. createRequest(Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.Creates a new request.Constructors in org.restlet.ext.nio with parameters of type Server Constructor Description HttpServerHelper(Server server)Deprecated.Constructor.HttpServerHelper(Server server, Protocol protocol)Deprecated.Constructor.HttpsServerHelper(Server server)Deprecated.Constructor.ServerConnectionHelper(Server server)Deprecated.Constructor. -
Uses of Server in org.restlet.ext.nio.internal.request
Fields in org.restlet.ext.nio.internal.request with type parameters of type Server Modifier and Type Field Description private Connection<Server>HttpInboundRequest. connectionDeprecated.The parent network connection.Methods in org.restlet.ext.nio.internal.request that return types with arguments of type Server Modifier and Type Method Description Connection<Server>HttpInboundRequest. getConnection()Deprecated.Returns the related connection.SslConnection<Server>HttpsInboundRequest. getConnection()Deprecated.Connection<Server>InboundRequest. getConnection()Deprecated.Returns the related connection.Constructor parameters in org.restlet.ext.nio.internal.request with type arguments of type Server Constructor Description HttpInboundRequest(Context context, Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.Constructor.HttpsInboundRequest(Context context, Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.Constructor. -
Uses of Server in org.restlet.ext.nio.internal.way
Methods in org.restlet.ext.nio.internal.way that return types with arguments of type Server Modifier and Type Method Description SslConnection<Server>HttpsServerInboundWay. getConnection()Deprecated.SslConnection<Server>HttpsServerOutboundWay. getConnection()Deprecated.Connection<Server>ServerInboundWay. getConnection()Deprecated.Connection<Server>ServerOutboundWay. getConnection()Deprecated.Constructor parameters in org.restlet.ext.nio.internal.way with type arguments of type Server Constructor Description HttpServerInboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.HttpServerOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.HttpsServerInboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.HttpsServerOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.ServerOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor. -
Uses of Server in org.restlet.util
Methods in org.restlet.util that return Server Modifier and Type Method Description ServerServerList. add(Protocol protocol)Adds a new server connector in the map supporting the given protocol.ServerServerList. add(Protocol protocol, int port)Adds a new server connector in the map supporting the given protocol on the specified port.ServerServerList. add(Protocol protocol, java.lang.String address, int port)Adds a new server connector in the map supporting the given protocol on the specified IP address and port.Methods in org.restlet.util with parameters of type Server Modifier and Type Method Description booleanServerList. add(Server server)Adds a server at the end of the list.
-