Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
EmbeddedJaxrsServer.getDeployment() |
Modifier and Type | Method and Description |
---|---|
void |
EmbeddedJaxrsServer.setDeployment(ResteasyDeployment deployment) |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
NettyJaxrsServer.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
NettyJaxrsServer.getDeployment() |
Modifier and Type | Method and Description |
---|---|
void |
NettyJaxrsServer.setDeployment(ResteasyDeployment deployment) |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
ResteasyBootstrap.deployment |
protected ResteasyDeployment |
ServletContainerDispatcher.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
ConfigurationBootstrap.createDeployment() |
ResteasyDeployment |
ListenerBootstrap.createDeployment() |
ResteasyDeployment |
FilterBootstrap.createDeployment() |
ResteasyDeployment |
ServletBootstrap.createDeployment() |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
HttpContextBuilder.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
SunHttpJaxrsServer.getDeployment() |
ResteasyDeployment |
HttpContextBuilder.getDeployment() |
Modifier and Type | Method and Description |
---|---|
void |
SunHttpJaxrsServer.setDeployment(ResteasyDeployment deployment) |
void |
HttpContextBuilder.setDeployment(ResteasyDeployment deployment) |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
TJWSEmbeddedJaxrsServer.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
TJWSEmbeddedJaxrsServer.getDeployment() |
Modifier and Type | Method and Description |
---|---|
void |
TJWSEmbeddedJaxrsServer.setDeployment(ResteasyDeployment deployment) |
Modifier and Type | Method and Description |
---|---|
UndertowJaxrsServer |
UndertowJaxrsServer.deploy(ResteasyDeployment deployment)
Creates a web deployment under "/"
|
UndertowJaxrsServer |
UndertowJaxrsServer.deploy(ResteasyDeployment deployment,
String contextPath)
Creates a web deployment under contextPath
|
io.undertow.servlet.api.DeploymentInfo |
UndertowJaxrsServer.undertowDeployment(ResteasyDeployment deployment)
Creates a web deployment for your ResteasyDeployent so you can set up things like security constraints
You'd call this method, add your servlet security constraints, then call deploy(DeploymentInfo)
Note, only one ResteasyDeployment can be applied per DeploymentInfo.
|
io.undertow.servlet.api.DeploymentInfo |
UndertowJaxrsServer.undertowDeployment(ResteasyDeployment deployment,
String mapping)
Creates a web deployment for your ResteasyDeployent so you can set up things like security constraints
You'd call this method, add your servlet security constraints, then call deploy(DeploymentInfo)
Note, only one ResteasyDeployment can be applied per DeploymentInfo
ResteasyServlet is mapped to mapping + "/*"
Example:
DeploymentInfo di = server.undertowDeployment(resteasyDeployment, "rest");
di.setDeploymentName("MyDeployment")
di.setContextRoot("root");
server.deploy(di);
|
Constructor and Description |
---|
SpringBeanProcessor(ResteasyDeployment deployment) |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
ResteasyHandlerAdapter.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
ResteasyView.getDeployment() |
ResteasyDeployment |
ResteasyNoResourceFoundView.getDeployment() |
Modifier and Type | Method and Description |
---|---|
void |
ResteasyView.setDeployment(ResteasyDeployment deployment) |
void |
ResteasyNoResourceFoundView.setDeployment(ResteasyDeployment deployment) |
Constructor and Description |
---|
ResteasyHandlerAdapter(ResteasyDeployment deployment) |
ResteasyHandlerMapping(ResteasyDeployment deployment) |
ResteasyView(String contentType,
ResteasyDeployment deployment) |
Modifier and Type | Field and Description |
---|---|
protected static ResteasyDeployment |
BaseResourceTest.deployment |
Modifier and Type | Method and Description |
---|---|
static ResteasyDeployment |
NettyContainer.start() |
static ResteasyDeployment |
HttpServerContainer.start() |
static ResteasyDeployment |
EmbeddedContainer.start() |
static ResteasyDeployment |
TJWSServletContainer.start() |
static ResteasyDeployment |
EmbeddedContainer.start(Hashtable<String,String> initParams) |
static ResteasyDeployment |
EmbeddedContainer.start(Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
NettyContainer.start(String bindPath) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath) |
static ResteasyDeployment |
EmbeddedContainer.start(String bindPath) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
Hashtable<String,String> initParams) |
static ResteasyDeployment |
EmbeddedContainer.start(String bindPath,
Hashtable<String,String> initParams) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath,
Hashtable<String,String> initParams) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
EmbeddedContainer.start(String bindPath,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
NettyContainer.start(String bindPath,
SecurityDomain domain) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain) |
static ResteasyDeployment |
EmbeddedContainer.start(String bindPath,
SecurityDomain domain) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath,
SecurityDomain domain) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath,
SecurityDomain domain,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
NettyContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
Modifier and Type | Method and Description |
---|---|
static void |
NettyContainer.start(ResteasyDeployment deployment) |
static void |
HttpServerContainer.start(ResteasyDeployment deployment) |
static void |
EmbeddedContainer.start(ResteasyDeployment deployment) |
static void |
TJWSServletContainer.start(ResteasyDeployment deployment) |
static ResteasyDeployment |
NettyContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
TJWSServletContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
Modifier and Type | Method and Description |
---|---|
static ResteasyWadlServiceRegistry |
ResteasyWadlGenerator.generateServiceRegistry(ResteasyDeployment deployment) |
Copyright © 2016. All rights reserved.