com.ibm.portal.mappingurl
Interface PortalURL

All Superinterfaces:
Identifiable, Localized

Deprecated.

public interface PortalURL
extends Identifiable, Localized

The Portal URL interface provides methods to obtain all required information about the PortalURL that is assigned to a context. It represents the DataObject that contains all information that would otherwise be encoded in a normal URL string, like the OID of the referenced resource, the appropriate locale and the parameters.

Since:
8.0

Method Summary
 ObjectID getID()
          Deprecated. Returns the ObjectID of this portal url.
 java.util.Locale getLocale()
          Deprecated. Returns the Locale of this portal url.
 java.lang.String getParameter(java.lang.String name)
          Deprecated. Returns the value of a parameter.
 java.util.Iterator<java.lang.String> getParameterNames()
          Deprecated. Returns an iterator over all parameter names.
 ObjectID getReferencedResourceID()
          Deprecated. Returns the ObjectID of the referenced resource.
 ObjectID getVirtualPortalObjectID()
          Deprecated. Returns the objectID of the referenced virtual portal or null if none is associated
 void setLocale(java.util.Locale locale)
          Deprecated. Sets the Locale of this portal url.
 void setParameter(java.lang.String name, java.lang.String value)
          Deprecated. Sets a Parameter for this portal url.
 
Methods inherited from interface com.ibm.portal.Identifiable
getObjectID
 
Methods inherited from interface com.ibm.portal.Localized
getDescription, getLocales, getTitle
 

Method Detail

getReferencedResourceID

ObjectID getReferencedResourceID()
Deprecated. 
Returns the ObjectID of the referenced resource.

Returns:
ObjectID The object id of the referenced resource.

getVirtualPortalObjectID

ObjectID getVirtualPortalObjectID()
Deprecated. 
Returns the objectID of the referenced virtual portal or null if none is associated

Returns:
objectID of the virtual portal associated with the referenced resource or null

getID

ObjectID getID()
Deprecated. 
Returns the ObjectID of this portal url.

Returns:
ObjectID The object id of this portal url.

getLocale

java.util.Locale getLocale()
Deprecated. 
Returns the Locale of this portal url.

Returns:
Locale The locale of this portal url.

setLocale

void setLocale(java.util.Locale locale)
Deprecated. 
Sets the Locale of this portal url.

Parameters:
locale - The locale of this portal url.

setParameter

void setParameter(java.lang.String name,
                  java.lang.String value)
Deprecated. 
Sets a Parameter for this portal url.

Parameters:
name - The name of the parameter.
value - The value of th parameter

getParameter

java.lang.String getParameter(java.lang.String name)
Deprecated. 
Returns the value of a parameter.

Parameters:
name - The name of the parameter.
Returns:
String The value of the parameter.

getParameterNames

java.util.Iterator<java.lang.String> getParameterNames()
Deprecated. 
Returns an iterator over all parameter names.

Returns:
Iterator The iterator over all parameter names.