Modifier and Type | Class and Description |
---|---|
class |
ResteasyDeploymentImpl
This class is used to configure and initialize the core components of RESTEasy.
|
Modifier and Type | Method and Description |
---|---|
void |
ResteasyDeploymentImpl.merge(ResteasyDeployment other) |
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() |
static ResteasyDeployment |
NettyContainer.start() |
static ResteasyDeployment |
NettyContainer.start(String bindPath) |
static ResteasyDeployment |
NettyContainer.start(String bindPath,
SecurityDomain domain) |
static ResteasyDeployment |
NettyContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment) |
Modifier and Type | Method and Description |
---|---|
void |
NettyJaxrsServer.setDeployment(ResteasyDeployment deployment) |
static void |
NettyContainer.start(ResteasyDeployment deployment) |
static ResteasyDeployment |
NettyContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment) |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
ResteasyBootstrap.deployment |
protected ResteasyDeployment |
ServletContainerDispatcher.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
ServletBootstrap.createDeployment() |
ResteasyDeployment |
FilterBootstrap.createDeployment() |
ResteasyDeployment |
ConfigurationBootstrap.createDeployment() |
ResteasyDeployment |
ListenerBootstrap.createDeployment() |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
HttpContextBuilder.deployment |
Modifier and Type | Method and Description |
---|---|
ResteasyDeployment |
SunHttpJaxrsServer.getDeployment() |
ResteasyDeployment |
HttpContextBuilder.getDeployment() |
static ResteasyDeployment |
HttpServerContainer.start() |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
Hashtable<String,String> initParams) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
Modifier and Type | Method and Description |
---|---|
void |
SunHttpJaxrsServer.setDeployment(ResteasyDeployment deployment) |
void |
HttpContextBuilder.setDeployment(ResteasyDeployment deployment) |
static void |
HttpServerContainer.start(ResteasyDeployment deployment) |
static ResteasyDeployment |
HttpServerContainer.start(String bindPath,
SecurityDomain domain,
ResteasyDeployment deployment,
Hashtable<String,String> initParams,
Hashtable<String,String> contextParams) |
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
|
UndertowJaxrsServer |
UndertowJaxrsServer.deploy(ResteasyDeployment deployment,
String contextPath,
Map<String,String> contextParams,
Map<String,String> initParams) |
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);
|
Modifier and Type | Class and Description |
---|---|
class |
VertxResteasyDeployment |
Modifier and Type | Method and Description |
---|---|
void |
VertxJaxrsServer.setDeployment(ResteasyDeployment deployment) |
Constructor and Description |
---|
VertxRequestHandler(io.vertx.core.Vertx vertx,
ResteasyDeployment deployment) |
VertxRequestHandler(io.vertx.core.Vertx vertx,
ResteasyDeployment deployment,
String servletMappingPrefix) |
VertxRequestHandler(io.vertx.core.Vertx vertx,
ResteasyDeployment deployment,
String servletMappingPrefix,
SecurityDomain domain) |
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
SpringBeanProcessor.deployment |
Constructor and Description |
---|
SpringBeanProcessor(ResteasyDeployment deployment) |
Modifier and Type | Method and Description |
---|---|
void |
ResteasyDeployment.merge(ResteasyDeployment other) |
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 | Method and Description |
---|---|
static ResteasyWadlServiceRegistry |
ResteasyWadlGenerator.generateServiceRegistry(ResteasyDeployment deployment) |
javax.ws.rs.core.Response |
ResteasyWadlDefaultResource.grammars(String path,
ResteasyDeployment deployment) |
String |
ResteasyWadlDefaultResource.output(ResteasyDeployment deployment) |
Copyright © 2019 JBoss by Red Hat. All rights reserved.