Class PageModelParameterBean
- java.lang.Object
-
- com.gentics.contentnode.rest.resource.parameter.PageModelParameterBean
-
public class PageModelParameterBean extends Object
Parameter bean for page model parameters
-
-
Field Summary
Fields Modifier and Type Field Description boolean
contentTags
True if the contenttags shall be attached to all returned pages.boolean
folder
True for adding folder info to the pages.boolean
languageVariants
True for adding the language variants to the pages.boolean
objectTags
True if the objecttags shall be attached to all returned pages.boolean
template
True for adding template info to the pages.boolean
translationStatus
True if the translationstatus information shall be added for every page.
-
Constructor Summary
Constructors Constructor Description PageModelParameterBean()
-
-
-
Field Detail
-
template
@QueryParam("template") @DefaultValue("false") public boolean template
True for adding template info to the pages. Default is false.
-
folder
@QueryParam("folder") @DefaultValue("false") public boolean folder
True for adding folder info to the pages. Default is false.
-
languageVariants
@QueryParam("langvars") @DefaultValue("false") public boolean languageVariants
True for adding the language variants to the pages. Default is false.
-
contentTags
@QueryParam("contenttags") @DefaultValue("false") public boolean contentTags
True if the contenttags shall be attached to all returned pages. Default is false
-
objectTags
@QueryParam("objecttags") @DefaultValue("false") public boolean objectTags
True if the objecttags shall be attached to all returned pages. Default is false.
-
translationStatus
@QueryParam("translationstatus") @DefaultValue("false") public boolean translationStatus
True if the translationstatus information shall be added for every page. Default is false.
-
-