%@ page import="java.io.*,
java.util.*,
java.net.URL,
com.plumtree.remote.prc.*,
com.plumtree.remote.prc.search.*,
com.plumtree.openfoundation.util.*"
%>
Search Properties
<%
Map map = (Map) session.getAttribute("resultsMap");
if (null == map)
{
out.println("unable to retrieve map of results. Try running the search again");
return;
}
String ptrank = request.getParameter("ptrank");
if (null == ptrank)
{
out.println("no rank supplied- this page can only be accessed from the simple_search page");
return;
}
IPortalSearchResult result = (IPortalSearchResult) map.get(ptrank);
if (null == result)
{
out.println("unable to find search result. Try running the search again");
}
out.println(" Properties
");
out.println("");
out.println("Name | " + result.getName() + " |
");
out.println("Rank | " + result.getRank() + " |
");
out.println("Class ID | " + result.getClassID() + " |
");
out.println("Object ID | " + result.getObjectID() + " |
");
out.println("Created Date | " + result.getCreated() + " |
");
out.println("Last Modified Date | " + result.getLastModified() + " |
");
out.println("
");
%>