@ProviderType public abstract class BridgeURLFactory extends java.lang.Object implements javax.faces.FacesWrapper<BridgeURLFactory>
BridgeURL.| Constructor and Description |
|---|
BridgeURLFactory() |
| Modifier and Type | Method and Description |
|---|---|
abstract BridgeURL |
getBridgeActionURL(javax.faces.context.FacesContext facesContext,
java.lang.String uri)
Returns a new action URL instance of
BridgeURL. |
static BridgeURL |
getBridgeActionURLInstance(javax.faces.context.FacesContext facesContext,
java.lang.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,
java.lang.String uri,
java.util.Map<java.lang.String,java.util.List<java.lang.String>> parameters)
Returns a new bookmarkable URL instance of
BridgeURL. |
static BridgeURL |
getBridgeBookmarkableURLInstance(javax.faces.context.FacesContext facesContext,
java.lang.String uri,
java.util.Map<java.lang.String,java.util.List<java.lang.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,
java.lang.String uri)
Returns a new partial action URL instance of
BridgeURL. |
static BridgeURL |
getBridgePartialActionURLInstance(javax.faces.context.FacesContext facesContext,
java.lang.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,
java.lang.String uri,
java.util.Map<java.lang.String,java.util.List<java.lang.String>> parameters)
Returns a new redirect URL instance of
BridgeURL. |
static BridgeURL |
getBridgeRedirectURLInstance(javax.faces.context.FacesContext facesContext,
java.lang.String uri,
java.util.Map<java.lang.String,java.util.List<java.lang.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,
java.lang.String uri)
Returns a new resource URL instance of
BridgeURL. |
static BridgeURL |
getBridgeResourceURLInstance(javax.faces.context.FacesContext facesContext,
java.lang.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.
|
public static BridgeURL getBridgeActionURLInstance(javax.faces.context.FacesContext facesContext, java.lang.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, java.lang.String uri, java.util.Map<java.lang.String,java.util.List<java.lang.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, java.lang.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, java.lang.String uri, java.util.Map<java.lang.String,java.util.List<java.lang.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, java.lang.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, java.lang.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, java.lang.String uri, java.util.Map<java.lang.String,java.util.List<java.lang.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, java.lang.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, java.lang.String uri, java.util.Map<java.lang.String,java.util.List<java.lang.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, java.lang.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>Copyright © 2020 Liferay, Inc. All Rights Reserved.