|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.servlet.GenericServlet
javax.servlet.http.HttpServlet
com.yworks.yfiles.server.graphml.servlets.SaveGraphServlet
Simple abstract base servlet that can read a GraphML file from the client and write it to a stream.
Subclasses need to override createSaveStream(javax.servlet.http.HttpServletRequest)
to return a stream to which the data can be sent.
| Constructor Summary | |
protected |
SaveGraphServlet()
Calls the SaveGraphServlet(String) constructor using
AbstractGraphRoundtripSupport.PARAM_GRAPH
as the parameter name. |
protected |
SaveGraphServlet(String graphParameter)
Creates a new instance using the provided parameter to get the graphml string from the HttpServletRequest later in getGraphInputStream(javax.servlet.http.HttpServletRequest)
from. |
| Method Summary | |
protected abstract OutputStream |
createSaveStream(javax.servlet.http.HttpServletRequest httpServletRequest)
Create a stream for the given request to which the data will be sent. |
protected void |
doGet(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse)
|
protected void |
doPost(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse)
|
protected InputStream |
getGraphInputStream(javax.servlet.http.HttpServletRequest httpServletRequest)
Retrieves the input stream from the request to read the graphml from. |
| Methods inherited from class javax.servlet.http.HttpServlet |
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service |
| Methods inherited from class javax.servlet.GenericServlet |
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
protected SaveGraphServlet()
SaveGraphServlet(String) constructor using
AbstractGraphRoundtripSupport.PARAM_GRAPH
as the parameter name.
protected SaveGraphServlet(String graphParameter)
HttpServletRequest later in getGraphInputStream(javax.servlet.http.HttpServletRequest)
from.
graphParameter - the name of the parameter of null if the ServletInputStream
shall be used.| Method Detail |
protected void doPost(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse)
throws javax.servlet.ServletException,
IOException
javax.servlet.ServletException
IOException
protected InputStream getGraphInputStream(javax.servlet.http.HttpServletRequest httpServletRequest)
throws IOException
ServletRequest.getParameter(String)
method using the parameter name specified in the constructor.
If no parameter name has been specified the ServletInputStream is returned.
httpServletRequest - the request
IOException - if something bad happened.
protected abstract OutputStream createSaveStream(javax.servlet.http.HttpServletRequest httpServletRequest)
throws IOException
httpServletRequest - the request that was used by the client.
IOException - if something goes wrong
protected void doGet(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse)
throws javax.servlet.ServletException,
IOException
javax.servlet.ServletException
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||