Package org.restlet.data
Class ServerInfo
java.lang.Object
org.restlet.data.ServerInfo
Server specific data related to a call.
- Author:
- Jerome Louvel
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the IP address.getAgent()Returns the agent name (ex: "Restlet-Framework/2.0").intgetPort()Returns the port number which received the call.booleanReturn true if the server accepts range requests for a resource, with the "byte" range unit.voidsetAcceptingRanges(boolean acceptingRanges) Indicates if the server accepts range requests for a resource, with the "byte" range unit.voidsetAddress(String address) Sets the IP address which received the call.voidSets the agent name (ex: "Restlet-Framework/2.0").voidsetPort(int port) Sets the port number which received the call.
-
Constructor Details
-
ServerInfo
public ServerInfo()Constructor.
-
-
Method Details
-
getAddress
Returns the IP address.- Returns:
- The IP address.
-
getAgent
Returns the agent name (ex: "Restlet-Framework/2.0"). Note that when used with HTTP connectors, this property maps to the "Server" header.- Returns:
- The agent name.
-
getPort
public int getPort()Returns the port number which received the call. If no port is specified, -1 is returned.- Returns:
- The port number which received the call.
-
isAcceptingRanges
public boolean isAcceptingRanges()Return true if the server accepts range requests for a resource, with the "byte" range unit. Note that when used with HTTP connectors, this property maps to the "Accept-Ranges" header.- Returns:
- True if the server accepts range requests for a resource.
-
setAcceptingRanges
public void setAcceptingRanges(boolean acceptingRanges) Indicates if the server accepts range requests for a resource, with the "byte" range unit. Note that when used with HTTP connectors, this property maps to the "Accept-Ranges" header.- Parameters:
acceptingRanges- True if the server accepts range requests for a resource.
-
setAddress
Sets the IP address which received the call.- Parameters:
address- The IP address which received the call.
-
setAgent
Sets the agent name (ex: "Restlet-Framework/2.0"). Note that when used with HTTP connectors, this property maps to the "Server" header.- Parameters:
agent- The agent name.
-
setPort
public void setPort(int port) Sets the port number which received the call.- Parameters:
port- The port number which received the call.
-