|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.faces.bridge.BridgeURLFactory
public abstract class BridgeURLFactory
This factory is responsible for creating instances of BridgeURL.
| Constructor Summary | |
|---|---|
BridgeURLFactory()
|
|
| Method Summary | |
|---|---|
abstract BridgeURL |
getBridgeActionURL(javax.faces.context.FacesContext facesContext,
String uri)
Returns a new action URL instance of BridgeURL. |
static BridgeURL |
getBridgeActionURLInstance(javax.faces.context.FacesContext facesContext,
String uri)
Returns a new action URL instance of BridgeURL from the BridgeURLFactory found by the BridgeFactoryFinder. |
abstract BridgeURL |
getBridgeBookmarkableURL(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
Returns a new bookmarkable URL instance of BridgeURL. |
static BridgeURL |
getBridgeBookmarkableURLInstance(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
Returns a new bookmarkable URL instance of BridgeURL from the BridgeURLFactory found by the
BridgeFactoryFinder. |
abstract BridgeURL |
getBridgePartialActionURL(javax.faces.context.FacesContext facesContext,
String uri)
Returns a new partial action URL instance of BridgeURL. |
static BridgeURL |
getBridgePartialActionURLInstance(javax.faces.context.FacesContext facesContext,
String uri)
Returns a new partial action URL instance of BridgeURL from the BridgeURLFactory found by the
BridgeFactoryFinder. |
abstract BridgeURL |
getBridgeRedirectURL(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
Returns a new redirect URL instance of BridgeURL. |
static BridgeURL |
getBridgeRedirectURLInstance(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
Returns a new redirect URL instance of BridgeURL from the BridgeURLFactory found by the BridgeFactoryFinder. |
abstract BridgeURL |
getBridgeResourceURL(javax.faces.context.FacesContext facesContext,
String uri)
Returns a new resource URL instance of BridgeURL. |
static BridgeURL |
getBridgeResourceURLInstance(javax.faces.context.FacesContext facesContext,
String uri)
Returns a new resource URL instance of BridgeURL from the BridgeURLFactory found by the BridgeFactoryFinder. |
abstract BridgeURLFactory |
getWrapped()
Returns the wrapped factory instance if this factory decorates another. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public BridgeURLFactory()
| Method Detail |
|---|
public static BridgeURL getBridgeActionURLInstance(javax.faces.context.FacesContext facesContext,
String uri)
BridgeURL from the BridgeURLFactory found by the BridgeFactoryFinder. The returned instance is not guaranteed to be Serializable.
public static BridgeURL getBridgeBookmarkableURLInstance(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
BridgeURL from the BridgeURLFactory found by the
BridgeFactoryFinder. The returned instance is not guaranteed to be Serializable.
public static BridgeURL getBridgePartialActionURLInstance(javax.faces.context.FacesContext facesContext,
String uri)
BridgeURL from the BridgeURLFactory found by the
BridgeFactoryFinder. The returned instance is not guaranteed to be Serializable.
public static BridgeURL getBridgeRedirectURLInstance(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
BridgeURL from the BridgeURLFactory found by the BridgeFactoryFinder. The returned instance is not guaranteed to be Serializable.
public static BridgeURL getBridgeResourceURLInstance(javax.faces.context.FacesContext facesContext,
String uri)
BridgeURL from the BridgeURLFactory found by the BridgeFactoryFinder. The returned instance is not guaranteed to be Serializable.
public abstract BridgeURL getBridgeActionURL(javax.faces.context.FacesContext facesContext,
String uri)
throws BridgeException
BridgeURL. The returned instance is not guaranteed to be Serializable. The return value of BridgeURL.toString() conforms to the deviation requirements of
ExternalContext.encodeActionURL(String) listed in Section 6.1.3.1 of the Bridge Spec.
facesContext - The FacesContext instance associated with the current request.uri - The URI that is to be encoded.
BridgeException - if the specified URI is an invalid reference.
public abstract BridgeURL getBridgeBookmarkableURL(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
throws BridgeException
BridgeURL. The returned instance is not guaranteed to be
Serializable. The return value of BridgeURL.toString() conforms to the deviation
requirements of ExternalContext.encodeBookmarkableURL(String, Map) listed in Section
6.1.3.1 of the Bridge Spec.
facesContext - The FacesContext instance associated with the current request.uri - The URI that is to be encoded.
BridgeException - if the specified URI is an invalid reference.
public abstract BridgeURL getBridgePartialActionURL(javax.faces.context.FacesContext facesContext,
String uri)
throws BridgeException
BridgeURL. The returned instance is not guaranteed to be
Serializable. The return value of BridgeURL.toString() conforms to the deviation
requirements of ExternalContext.encodePartialActionURL(String) listed in Section
6.1.3.1 of the Bridge Spec.
facesContext - The FacesContext instance associated with the current request.uri - The URI that is to be encoded.
BridgeException - if the specified URI is an invalid reference.
public abstract BridgeURL getBridgeRedirectURL(javax.faces.context.FacesContext facesContext,
String uri,
Map<String,List<String>> parameters)
throws BridgeException
BridgeURL. The returned instance is not guaranteed to be Serializable. The return value of BridgeURL.toString(), conforms to the deviation requirements
of ExternalContext.encodeRedirectURL(String, Map) listed in Section 6.1.3.1 of the
Bridge Spec.
facesContext - The FacesContext instance associated with the current request.uri - The URI that is to be encoded.
BridgeException - if the specified URI is an invalid reference.
public abstract BridgeURL getBridgeResourceURL(javax.faces.context.FacesContext facesContext,
String uri)
throws BridgeException
BridgeURL. The returned instance is not guaranteed to be Serializable. The return value of BridgeURL.toString() conforms to the deviation requirements of
ExternalContext.encodeResourceURL(String) listed in Section 6.1.3.1 of the Bridge
Spec.
facesContext - The FacesContext instance associated with the current request.uri - The URI that is to be encoded.
BridgeException - if the specified URI is an invalid reference.public abstract BridgeURLFactory getWrapped()
getWrapped in interface javax.faces.FacesWrapper<BridgeURLFactory>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||