Package lumis.portal.rest.util
Class PortalHrefToAbsoluteXmlAdapter
- java.lang.Object
-
- javax.xml.bind.annotation.adapters.XmlAdapter<java.lang.String,java.lang.String>
-
- lumis.portal.rest.util.PortalHrefToAbsoluteXmlAdapter
-
@StableMinor(version="15.0", sinceVersion="8.0") public class PortalHrefToAbsoluteXmlAdapter extends XmlAdapter<java.lang.String,java.lang.String>
JAXB XML adapter that marshals a portal relative href to an absolute href.The marshalling will only perform the conversion if the value is a valid relative URI.
The unmarshalling assumes that, if the value is an absolute portal href, it is based on the request's website base URL.
If during marshal or unmarshal the conversion cannot be done due to the value being an invalid URI or no website base URL cound be identified for the current request, the original value is kept.
Sample marshal:
"path"
to"http://localhost:8080/portal/path"
Sample unmarshal:"http://localhost:8080/portal/path"
to"path"
- Since:
- 8.0.0
- Version:
- $Revision: 25303 $ $Date: 2022-10-22 22:48:02 -0300 (Sat, 22 Oct 2022) $
-
-
Constructor Summary
Constructors Constructor Description PortalHrefToAbsoluteXmlAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
marshal(java.lang.String value)
java.lang.String
unmarshal(java.lang.String value)
-
-
-
Method Detail
-
unmarshal
public java.lang.String unmarshal(java.lang.String value) throws PortalException
- Specified by:
unmarshal
in classXmlAdapter<java.lang.String,java.lang.String>
- Throws:
PortalException
-
marshal
public java.lang.String marshal(java.lang.String value) throws PortalException
- Specified by:
marshal
in classXmlAdapter<java.lang.String,java.lang.String>
- Throws:
PortalException
-
-