Package org.opennms.web.asset
Class ImportAssetsServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.opennms.web.asset.ImportAssetsServlet
-
- All Implemented Interfaces:
java.io.Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
public class ImportAssetsServlet extends javax.servlet.http.HttpServlet
ImportAssetsServlet class.
- Author:
- Lawrence Karnowski, Benjamin Reed
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AssetModel
model
protected java.lang.String
redirectSuccess
The URL to redirect the client to in case of success.
-
Constructor Summary
Constructors Constructor Description ImportAssetsServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Asset>
decodeAssetsText(java.lang.String text)
decodeAssetsTextvoid
doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Acknowledge the events specified in the POST and then redirect the client to an appropriate URL for display.java.util.List<java.lang.Integer>
getCurrentAssetNodesList()
getCurrentAssetNodesListvoid
init()
Looks up theredirect.success
parameter in the servlet's configuration.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
-
-
-
Field Detail
-
redirectSuccess
protected java.lang.String redirectSuccess
The URL to redirect the client to in case of success.
-
model
protected AssetModel model
-
-
Method Detail
-
init
public void init() throws javax.servlet.ServletException
Looks up theredirect.success
parameter in the servlet's configuration. If not present, this servlet will throw an exception so it will be marked unavailable.- Overrides:
init
in classjavax.servlet.GenericServlet
- Throws:
javax.servlet.ServletException
- if any.
-
doPost
public void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, java.io.IOException
Acknowledge the events specified in the POST and then redirect the client to an appropriate URL for display.- Overrides:
doPost
in classjavax.servlet.http.HttpServlet
- Throws:
javax.servlet.ServletException
java.io.IOException
-
decodeAssetsText
public java.util.List<Asset> decodeAssetsText(java.lang.String text) throws org.opennms.web.asset.ImportAssetsServlet.AssetException
decodeAssetsText
- Parameters:
text
- aString
object.- Returns:
- a
List
object. - Throws:
org.opennms.web.asset.ImportAssetsServlet$AssetException
- if any.org.opennms.web.asset.ImportAssetsServlet.AssetException
-
getCurrentAssetNodesList
public java.util.List<java.lang.Integer> getCurrentAssetNodesList() throws java.sql.SQLException
getCurrentAssetNodesList
- Returns:
- a
List
object. - Throws:
java.sql.SQLException
- if any.
-
-