Package org.bedework.synch.wsmessages
Class SynchPropertyInfoType
- java.lang.Object
-
- org.bedework.synch.wsmessages.SynchPropertyInfoType
-
public class SynchPropertyInfoType extends Object
Used to provide information about a property to systems, allows them to request that information from the user. The description is not generically useful being single language. Applications should key off the name which is also not multi-language. Properties are transferred as key-value pairs with the value being a (java) String representation of the value. The value field is not supplied if no value is set - otherwise it represents the default value for new subscriptions or the current value for modifications.Java class for SynchPropertyInfoType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SynchPropertyInfoType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="secure" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="required" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description SynchPropertyInfoType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the value of the description property.StringgetName()Gets the value of the name property.StringgetType()Gets the value of the type property.StringgetValue()Gets the value of the value property.booleanisRequired()Gets the value of the required property.booleanisSecure()Gets the value of the secure property.voidsetDescription(String value)Sets the value of the description property.voidsetName(String value)Sets the value of the name property.voidsetRequired(boolean value)Sets the value of the required property.voidsetSecure(boolean value)Sets the value of the secure property.voidsetType(String value)Sets the value of the type property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
isSecure
public boolean isSecure()
Gets the value of the secure property.
-
setSecure
public void setSecure(boolean value)
Sets the value of the secure property.
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Sets the value of the description property.- Parameters:
value- allowed object isString
-
isRequired
public boolean isRequired()
Gets the value of the required property.
-
setRequired
public void setRequired(boolean value)
Sets the value of the required property.
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
-