Class SimplePage
- java.lang.Object
-
- com.gentics.contentnode.rest.model.SimplePage
-
- All Implemented Interfaces:
Serializable
public class SimplePage extends Object implements Serializable
dumbed down representation of a page- Author:
- clemens
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SimplePage()
Constructor used by JAXB
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getId()
Boolean
getModified()
Modified flagString
getName()
Boolean
getOnline()
Online flagString
getPath()
Get the path to the pageString
getUrl()
Get the URLvoid
setId(Integer id)
void
setModified(Boolean modified)
Set modified flagvoid
setName(String name)
void
setOnline(Boolean online)
Set online flagvoid
setPath(String path)
Set the path to the pagevoid
setUrl(String url)
Set the URL to the page
-
-
-
Method Detail
-
getId
public Integer getId()
- Returns:
- the id
-
getName
public String getName()
- Returns:
- the name
-
getOnline
public Boolean getOnline()
Online flag- Returns:
- online flag
-
getModified
public Boolean getModified()
Modified flag- Returns:
- modified flag
-
setId
public void setId(Integer id)
- Parameters:
id
- the id to set
-
setName
public void setName(String name)
- Parameters:
name
- the name to set
-
setOnline
public void setOnline(Boolean online)
Set online flag- Parameters:
online
- online flag
-
setModified
public void setModified(Boolean modified)
Set modified flag- Parameters:
modified
- modified flag
-
getUrl
public String getUrl()
Get the URL- Returns:
- the URL
-
setUrl
public void setUrl(String url)
Set the URL to the page- Parameters:
url
- URL to the page
-
getPath
public String getPath()
Get the path to the page- Returns:
- path to the page
-
setPath
public void setPath(String path)
Set the path to the page- Parameters:
path
- path to the page
-
-