Class DebugInfoServer
- java.lang.Object
-
- org.apache.olingo.odata2.core.debug.DebugInfoServer
-
-
Constructor Summary
Constructors Constructor Description DebugInfoServer(javax.servlet.http.HttpServletRequest httpServletRequest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendHtml(Writer writer)Appends the content of this debug information part to the given writer.voidappendJson(JsonStreamWriter jsonStreamWriter)Appends the content of this debug information part to the given JSON stream writer.StringgetName()Gets the name of this debug information part, useful as title.
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:DebugInfoGets the name of this debug information part, useful as title.
-
appendJson
public void appendJson(JsonStreamWriter jsonStreamWriter) throws IOException
Description copied from interface:DebugInfoAppends the content of this debug information part to the given JSON stream writer.- Specified by:
appendJsonin interfaceDebugInfo- Parameters:
jsonStreamWriter- a JSON stream writer- Throws:
IOException
-
appendHtml
public void appendHtml(Writer writer) throws IOException
Description copied from interface:DebugInfoAppends the content of this debug information part to the given writer.- Specified by:
appendHtmlin interfaceDebugInfo- Parameters:
writer- aWriter- Throws:
IOException
-
-