Implementation details

Initially, the user ID (UID), page ID (PID), and address book title ID (TID) are passed to the initial resource page (index.jsp) in the request object. You can access these values using this code:

String uid = request.getParameter("uid");
String pid = request.getParameter("tileid");
String rid = request.getParameter("rid");

The AddressBookServlet class saves the UID, PID, and TID values in the session for subsequent calls.

See the JSP portlets documentation—%EASERVER%\Repository\WebApplication\onepage\docs\javadoc\index-all.html on Windows and $EASERVER/Repository/WebApplication/onepage/docs/javadoc/index-all.html on UNIX—for a list of variables that are accessible from pages through the request object.