📄 jetspeedlink.java
字号:
/**
* Return a link to a default page for the user
*
* @param user Desired user
* @return DynamicURI that to the desired page
*/
public DynamicURI getUser(String user);
/**
* Return a link to a desired page for the user
*
* @param page Desired page
* @param user Desired user
* @return DynamicURI that to the desired page
*/
public DynamicURI getUser(String user, String page);
/**
* Return a link that includes an action
*
* @param action action
* @return DynamicURI that includes the desire action
* @deprecated Use getAction()
*/
public DynamicURI setAction(String action);
/**
* Return a link that includes an action to a specific portlet, as defined
* by an entry
*
* @param action Desired action
* @param entry to receive the action
* @return DynamicURI that includes the desire action
*
* @deprecated use getAction()
*/
public DynamicURI setAction(String action, Entry entry);
/**
* Return a link that includes an action to a specific portlet, as defined
* by a portlet
*
* @param action Desired action
* @param portlet to receive the action
* @return DynamicURI that includes the desire action
*
* @deprecated use getAction()
*/
public DynamicURI setAction(String action, Portlet portlet);
/**
* Return a link that includes an action to a specific portlet, as defined
* by a portlets
*
* @param action Desired action
* @param portlet to receive the action
* @return DynamicURI that includes the desire action
*
* @deprecated use getAction()
*/
public DynamicURI setAction(String action, Portlets portlet);
/**
* Return a link to a default page for the group
*
* @param group Desired group
* @return DynamicURI that to the desired page
*
* @deprecated use getGroup()
*/
public DynamicURI setGroup(String group);
/**
* Return a link to a desired page for the group
*
* @param page Desired page
* @param group Desired group
* @return DynamicURI that to the desired page
*
* @deprecated use getGroup()
*/
public DynamicURI setGroup(String group, String page);
/**
* Return a link to a default page for the
* current user, group, or role.
*
* @return DynamicURI that to the desired page
*
* @deprecated use getPage()
*/
public DynamicURI setPage();
/**
* Return a link to a desired page for the
* current user, group, or role.
*
* @param page Desired page
* @return DynamicURI that to the desired page
*
* @deprecated use getPage()
*/
public DynamicURI setPage(String page);
/**
* Return a link to a desired page and pane for the
* current user, group, or role.
*
* @param page Desired page
* @param paneName Name of desired pane
* @return DynamicURI that to the desired page
*
* @deprecated use getPage()
*/
public DynamicURI setPage(String page, String paneName);
public DynamicURI setMediaType(String mediaType);
/**
* Return an link to a specific portlet using the portet's id
*
* @param peid of the portlet
* @return DynamicURI to specific portlet
*
* @deprecated use getPortletById()
*/
public DynamicURI setPortletById(String peid);
/**
* Return an link to a specific portal element
*
* @param peid of the portal element
* @return DynamicURI to specific portal element
*
* @deprecated use getPortletById or getPaneById()
*/
public DynamicURI setPortalElement(String peid);
/**
* Add a portlet reference in the link.
*
* Note: This must be used with caution, since a portlet may exist may times
* in a PSML. setPortletById() is the perfered method.
*
* @param portletName the name of the portlet to link to
* @return a DynamicURI referencing the named portlet for easy link construction in template
*
* @deprecated use getPortletByName()
*/
public DynamicURI setPortletByName(String portletName);
/**
* Return a link to a default page for the role
*
* @param role Desired role
* @return DynamicURI that to the desired page
*
* @deprecated use getRole()
*/
public DynamicURI setRole(String role);
/**
* Return a link to a desired page for the role
*
* @param role Desired role
* @param page Desired page
* @return DynamicURI that to the desired page
*
* @deprecated use getRole()
*/
public DynamicURI setRole(String role, String page);
/**
* Return a link to the template.
*
* @param template to add to link
* @return DynamicURI to specific portlet
*
* @deprecated use getTemplate()
*/
public DynamicURI setTemplate(String template);
/**
* Return a link to a default page for the user
*
* @param user Desired user
* @return DynamicURI that to the desired page
*
* @deprecated use getUser()
*/
public DynamicURI setUser(String user);
/**
* Return a link to a desired page for the user
*
* @param page Desired page
* @param user Desired user
* @return DynamicURI that to the desired page
*
* @deprecated use getUser()
*/
public DynamicURI setUser(String user, String page);
/**
* Return a URL, as a string, the the root page or pane.
*
* @return a URL, as a string, the the root page or pane.
*/
public String toString();
/**
* Return a link to a specific pane using the pane's id
*
* @param paneId of the Pane
* @return URI to specific portlet
* @deprecated Use getPaneById()
*/
public DynamicURI setPaneById(String paneId);
/**
* Return a link to a specific pane using the pane's id
*
* @param paneId of the Pane
* @return URI to specific portlet
*/
public DynamicURI getPaneById(String paneId);
/**
* Return a link to a specific pane using the pane's id
*
* @param paneName Name of the Pane
* @return URI to specific portlet
*/
public DynamicURI getPaneByName(String paneName);
/**
* depreceted methods from JetspeedTemplateLink.
*/
/**
* <p> Set the portlet giving context to this Link object.</p>
*
* This method is from JetspeedTemplateLink and is only here
* for backward compatibility. This it should not be used for
* any new development. Also any problems with this method will
* not be fixed
*
* @param portlet the name of the active portlet
* @deprecated Use getLink() or getAction() or getPortletById() or getPortletByName().
*/
public void setPortlet(Portlet portlet);
/**
* Return a link to a desired page. This is allows the inclusion of a Group/Role/User,
* page, template, action, media type, language, and country.
*
* @param rootType Type of root PSML docuument. The should be one of the following:
* <dl>
* <dt>JetspeedLink.CURRENT</dt><dd>The link will retain the current Group/Role/User referance. rootValue is not used</dd>
* <dt>JetspeedLink.DEFAULT</dt><dd>Default Group, Role, or User. rootValue is not used</dd>
* <dt>JetspeedLink.GROUP</dt><dd>Link will be to a Group PSML. rootValue is a Group Name</dd>
* <dt>JetspeedLink.ROLE</dt><dd>Link will be to a Role PSML. rootValue is a Role Name</dd>
* <dt>JetspeedLink.USER</dt><dd>Link will be to a User PSML. rootValue is a User Name</dd>
* </dl>
* @param rootValue See description of rootType
* @param pageName Name of page. null = default page
* @param elementType
* <dl>
* <dt>JetspeedLink.CURRENT</dt><dd>The link will retain the current Pane/Portlet referance. elementValue is not used</dd>
* <dt>JetspeedLink.DEFAULT</dt><dd>The link will NOT referance a pane or portlet. elementValue is not used</dd>
* <dt>JetspeedLink.PANE_ID</dt><dd>Link will be to a Pane using it's ID. elementValue is a Pane's ID</dd>
* <dt>JetspeedLink.PANE_NAME</dt><dd>Link will be to a Pane using it's Name. elementValue is a Pane's Name</dd>
* <dt>JetspeedLink.PORTLET_ID</dt><dd>Link will be to a Portlet using it's ID. elementValue is a Portlet's ID</dd>
* <dt>JetspeedLink.PORTLET_NAME</dt><dd>Link will be to a Portlet using it's Name. elementValue is a Portlet's Name</dd>
* </dl>
* @param elementValue See description of elementType
* @param actionName Name of action. If no action is desired use JetspeedLink.NO_ACTION.
* @param templateName Name of template. If no template is desired use JetspeedLink.NO_TEMPLATE.
* @param mediaType Desired media type. null = default media type
* @param language Desired language. null = default language
* @param country Desired country. null = default language
* @return URI to specific portlet
*/
public DynamicURI getLink(int rootType, String rootValue, String pageName, int elementType, String elementValue, String actionName, String templateName, String mediaType, String language, String country);
/**
* @see # org.apache.jetspeed.util.template.JetspeedLink.getLink( int, String, String, int, String, String, String, String, String, String
*/
public DynamicURI getLink(int rootType, String rootValue, String pageName, int elementType, String elementValue, String actionName, String templateName, String mediaType, String language);
public DynamicURI getLink(int rootType, String rootValue, String pageName, int elementType, String elementValue, String actionName, String templateName, String mediaType);
public DynamicURI getLink(int rootType, String rootValue, String pageName, int elementType, String elementValue, String actionName, String templateName);
public DynamicURI getLink(int rootType, String rootValue, String pageName, int elementType, String elementValue, String actionName);
public DynamicURI getLink(int rootType, String rootValue, String pageName, int elementType, String elementValue);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -