public class PortComponentLinkServlet extends HttpServlet
Modifier and Type | Field and Description |
---|---|
protected org.jboss.wsf.spi.management.EndpointRegistry |
epRegistry |
Constructor and Description |
---|
PortComponentLinkServlet() |
Modifier and Type | Method and Description |
---|---|
void |
doGet(HttpServletRequest req,
HttpServletResponse res)
Get the serviceURL as string for a given serviceID.
|
void |
init(ServletConfig config)
Called by the servlet container to indicate to a servlet that the
servlet is being placed into service.
|
doDelete, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service, service
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
public void init(ServletConfig config) throws ServletException
GenericServlet
Servlet.init(javax.servlet.ServletConfig)
.
This implementation stores the ServletConfig
object it receives from the servlet container for later use.
When overriding this form of the method, call
super.init(config)
.
init
in interface Servlet
init
in class GenericServlet
config
- the ServletConfig
object
that contains configutation
information for this servletServletException
- if an exception occurs that
interrupts the servlet's normal
operationUnavailableException
public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
doGet
in class HttpServlet
req
- an HttpServletRequest
object that
contains the request the client has made
of the servletres
- an HttpServletResponse
object that
contains the response the servlet sends
to the clientServletException
- if the request for the GET
could not be handledIOException
- if an input or output error is
detected when the servlet handles
the GET requestServletResponse.setContentType(java.lang.String)
Copyright © 2014 JBoss by Red Hat. All Rights Reserved.