org.restlet.data
Class ServerInfo

java.lang.Object
  extended by org.restlet.data.ServerInfo

public final class ServerInfo
extends java.lang.Object

Server specific data related to a call.

Author:
Jerome Louvel

Constructor Summary
ServerInfo()
          Constructor.
 
Method Summary
 java.lang.String getAddress()
          Returns the IP address.
 java.lang.String getAgent()
          Returns the agent name (ex: "Noelios Restlet Engine/1.1").
 int getPort()
          Returns the port number which received the call.
 boolean isAcceptRanges()
          Return true if the server accepts range requests for a resource.
 void setAcceptRanges(boolean acceptRanges)
          Indicates if the server accepts range requests for a resource.
 void setAddress(java.lang.String address)
          Sets the IP address which received the call.
 void setAgent(java.lang.String agent)
          Sets the agent name (ex: "Noelios Restlet Engine/1.1").
 void setPort(int port)
          Sets the port number which received the call.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServerInfo

public ServerInfo()
Constructor.

Method Detail

getAddress

public java.lang.String getAddress()
Returns the IP address.

Returns:
The IP address.

getAgent

public java.lang.String getAgent()
Returns the agent name (ex: "Noelios Restlet Engine/1.1").

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.

isAcceptRanges

public boolean isAcceptRanges()
Return true if the server accepts range requests for a resource.

Returns:
True if the server accepts range requests for a resource.

setAcceptRanges

public void setAcceptRanges(boolean acceptRanges)
Indicates if the server accepts range requests for a resource.

Parameters:
acceptRanges - True if the server accepts range requests for a resource.

setAddress

public void setAddress(java.lang.String address)
Sets the IP address which received the call.

Parameters:
address - The IP address which received the call.

setAgent

public void setAgent(java.lang.String agent)
Sets the agent name (ex: "Noelios Restlet Engine/1.1").

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.


Copyright © 2005-2008 Noelios Technologies.