Class ServletProtocolConfiguration
- java.lang.Object
-
- org.jboss.arquillian.protocol.servlet5.ServletProtocolConfiguration
-
- All Implemented Interfaces:
org.jboss.arquillian.container.test.spi.client.protocol.ProtocolConfiguration
public class ServletProtocolConfiguration extends Object implements org.jboss.arquillian.container.test.spi.client.protocol.ProtocolConfiguration
ServletProtocolConfiguration- Version:
- $Revision: $
- Author:
- Aslak Knutsen
-
-
Constructor Summary
Constructors Constructor Description ServletProtocolConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description URIgetBaseURI()StringgetContextRoot()StringgetHost()IntegergetPort()IntegergetPullInMilliSeconds()StringgetScheme()voidsetContextRoot(String context)voidsetHost(String host)voidsetPort(Integer port)voidsetPullInMilliSeconds(Integer pullInMilliSeconds)The Command Service provided by the Serlvet protocol will pull for Remote events happened in the container every x milliseconds.voidsetScheme(String scheme)
-
-
-
Method Detail
-
getScheme
public String getScheme()
- Returns:
- the scheme
-
setScheme
public void setScheme(String scheme)
- Parameters:
scheme- the scheme to set
-
getHost
public String getHost()
- Returns:
- the host
-
setHost
public void setHost(String host)
- Parameters:
host- the host to set
-
getPort
public Integer getPort()
- Returns:
- the port
-
setPort
public void setPort(Integer port)
- Parameters:
port- the port to set
-
getContextRoot
public String getContextRoot()
- Returns:
- the context
-
setContextRoot
public void setContextRoot(String context)
- Parameters:
context- the context to set
-
getBaseURI
public URI getBaseURI()
-
getPullInMilliSeconds
public Integer getPullInMilliSeconds()
- Returns:
-
setPullInMilliSeconds
public void setPullInMilliSeconds(Integer pullInMilliSeconds)
The Command Service provided by the Serlvet protocol will pull for Remote events happened in the container every x milliseconds.This is used by certain extensions to send data/commands between the container and client. Used by e.g. The InContianer Deployment.
Set the given pull interval time in milliseconds.
-
-