This class models a GeoServer OWS service settings.
Value
Object of R6Class
for modelling a GeoServer OWS service setting
Details
Geoserver REST API Service Setting
Author
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
Public fields
enabled
is service enabled or not?
citeCompliant
is service cite compliant?
name
service name
title
service title
maintainer
service maintainer
abstrct
service abastract
accessConstraints
service access constraints
fees
service fees
keywords
services keywords
onlineResource
service online resource
schemaBaseURL
service schema base URL
verbose
service verbose or not?
Methods
Inherited methods
Method new()
Initializes an object of class GSServiceSettings
Arguments
xml
object of class xml_node-class
service
service service acronym
Method decode()
Decodes from XML
Usage
GSServiceSettings$decode(xml)
Arguments
xml
object of class xml_node-class
Method setEnabled()
Set enabled
Usage
GSServiceSettings$setEnabled(enabled)
Method setCiteCompliant()
Set cite compliant
Usage
GSServiceSettings$setCiteCompliant(citeCompliant)
Arguments
citeCompliant
cite compliant
Method setName()
Set name
Usage
GSServiceSettings$setName(name)
Method setTitle()
Set title
Usage
GSServiceSettings$setTitle(title)
Method setMaintainer()
Set maintainer
Usage
GSServiceSettings$setMaintainer(maintainer)
Method setAbstract()
Set abstract
Usage
GSServiceSettings$setAbstract(abstract)
Method setAccessConstraints()
Set access constraints
Usage
GSServiceSettings$setAccessConstraints(accessConstraints)
Arguments
accessConstraints
access constraints
Method setFees()
Set fees
Usage
GSServiceSettings$setFees(fees)
Method setKeywords()
Set keywords
Usage
GSServiceSettings$setKeywords(keywords)
Method addKeyword()
Adds a keyword
Usage
GSServiceSettings$addKeyword(keyword)
Returns
TRUE
if added, FALSE
otherwise
Method delKeyword()
Deletes a keyword
Usage
GSServiceSettings$delKeyword(keyword)
Returns
TRUE
if deleted, FALSE
otherwise
Method clone()
The objects of this class are cloneable with this method.
Usage
GSServiceSettings$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Examples
settings <- GSServiceSettings$new(service = "WMS")
settings$setEnabled(TRUE)