Package lumis.portal.page.webresource
Class PageWebResourceData
- java.lang.Object
-
- lumis.portal.page.webresource.PageWebResourceData
-
@StableMinor(version="14.2", sinceVersion="5.0") public class PageWebResourceData extends Object
POJO for holding customizable data for a page web resource.- Since:
- 5.0.0
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
Constructor Summary
Constructors Constructor Description PageWebResourceData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description URL
getCanonicalUrl()
Returns the canonical link URL of the web resource.String
getDescription()
Returns the page web resource description.List<String>
getKeywords()
Returns the page web resource keywords.Map<String,String>
getMetaTags()
Returns the page meta tags in a map.String
getSimpleTitle()
Returns the page web resource simple title.
It's important to notice that this title may not be the final title of the web resource.String
getTitle()
Returns the page web resource title.String
getUrlPath()
Returns the URL path.String
getUrlTitle()
Returns the title value used for friendly URL generation of the web resource.void
setCanonicalUrl(URL canonicalUrl)
Sets the URL to be used as the canonical link of the web resource.void
setDescription(String description)
Sets the page web resource description.void
setKeywords(List<String> keywords)
Sets the page web resource keywords.void
setMetaTags(Map<String,String> metaTags)
Sets the page meta tags map.void
setSimpleTitle(String title)
Sets the page web resource simple title.
It's important to notice that this title may not be the final title of the web resource.void
setTitle(String title)
Sets the page web resource title.void
setUrlPath(String urlPath)
Sets the URL path.void
setUrlTitle(String urlTitle)
Sets the title value used during friendly URL generation of the web resource.
-
-
-
Method Detail
-
setTitle
public void setTitle(String title)
Sets the page web resource title.- Parameters:
title
- the title.- Since:
- 5.0.0
-
setSimpleTitle
public void setSimpleTitle(String title)
Sets the page web resource simple title.
It's important to notice that this title may not be the final title of the web resource. The final web resource title will be calculated usingtitle pattern
, that may or may not include this title.- Parameters:
title
- the simple title.- Since:
- 10.2.0
-
setUrlTitle
public void setUrlTitle(String urlTitle)
Sets the title value used during friendly URL generation of the web resource.- Parameters:
urlTitle
- the value, ornull
if no specific title for URL generation was defined.- Since:
- 10.0.0
-
setDescription
public void setDescription(String description)
Sets the page web resource description.- Parameters:
description
- the description.- Since:
- 5.0.0
-
setKeywords
public void setKeywords(List<String> keywords)
Sets the page web resource keywords.- Parameters:
keywords
- the keywords. Must not be null. If no keywords is desired, an empty list may be used.- Since:
- 5.0.0
-
setMetaTags
public void setMetaTags(Map<String,String> metaTags)
Sets the page meta tags map.- Parameters:
metaTagMap
- the new meta tags map.- Since:
- 6.0.0
-
setCanonicalUrl
public void setCanonicalUrl(URL canonicalUrl)
Sets the URL to be used as the canonical link of the web resource.- Parameters:
canonicalUrl
- the canonical URL, ornull
if this web resource does not have a canonical URL.- Since:
- 10.1.0
-
getTitle
public String getTitle()
Returns the page web resource title.- Returns:
- the title.
- Since:
- 5.0.0
-
getSimpleTitle
public String getSimpleTitle()
Returns the page web resource simple title.
It's important to notice that this title may not be the final title of the web resource. The final web resource title will be calculated usingtitle pattern
, that may or may not include this title.- Returns:
- the simple title.
- Since:
- 10.2.0
-
getDescription
public String getDescription()
Returns the page web resource description.- Returns:
- the description.
- Since:
- 5.0.0
-
getKeywords
public List<String> getKeywords()
Returns the page web resource keywords.- Returns:
- the keywords. Never returns
null
, but may return an empty list if there is no keyword. - Since:
- 5.0.0
-
getMetaTags
public Map<String,String> getMetaTags()
Returns the page meta tags in a map.- Returns:
- a map containing the page meta tags.
- Since:
- 6.0.0
-
getUrlTitle
public String getUrlTitle()
Returns the title value used for friendly URL generation of the web resource.- Returns:
- the title value, or
null
if no specific title for URL generation was defined. In this casegetSimpleTitle()
should be used instead. - Since:
- 10.0.0
-
getCanonicalUrl
public URL getCanonicalUrl()
Returns the canonical link URL of the web resource.- Returns:
- the canonical URL, or
null
if this web resource does not have a canonical URL. - Since:
- 10.1.0
-
getUrlPath
public String getUrlPath()
Returns the URL path.- Returns:
- the URL path.
- Since:
- 12.5.0
-
setUrlPath
public void setUrlPath(String urlPath)
Sets the URL path.- Parameters:
urlPattern
- the URL path.- Since:
- 12.5.0
-
-