<%@ 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(""); out.println(""); out.println(""); out.println(""); out.println(""); out.println(""); out.println("
Name" + result.getName() + "
Rank" + result.getRank() + "
Class ID" + result.getClassID() + "
Object ID" + result.getObjectID() + "
Created Date" + result.getCreated() + "
Last Modified Date" + result.getLastModified() + "
"); %>