Package org.bedework.synch.wsmessages
Class SynchConnectorInfoType
- java.lang.Object
-
- org.bedework.synch.wsmessages.SynchConnectorInfoType
-
public class SynchConnectorInfoType extends Object
Used to provide information about a connector to systems. None of this is intended to be displayable. name: should be unique and can be used to key into localizable information. manager: this is the special manager connector. readOnly: cannot update this end properties: those we need to present to the userJava class for SynchConnectorInfoType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SynchConnectorInfoType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="manager" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="readOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="properties" type="{http://www.bedework.org/synch/wsmessages}ArrayOfSynchPropertyInfo"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanmanagerprotected Stringnameprotected ArrayOfSynchPropertyInfopropertiesprotected booleanreadOnly
-
Constructor Summary
Constructors Constructor Description SynchConnectorInfoType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Gets the value of the name property.ArrayOfSynchPropertyInfogetProperties()Gets the value of the properties property.booleanisManager()Gets the value of the manager property.booleanisReadOnly()Gets the value of the readOnly property.voidsetManager(boolean value)Sets the value of the manager property.voidsetName(String value)Sets the value of the name property.voidsetProperties(ArrayOfSynchPropertyInfo value)Sets the value of the properties property.voidsetReadOnly(boolean value)Sets the value of the readOnly property.
-
-
-
Field Detail
-
name
protected String name
-
manager
protected boolean manager
-
readOnly
protected boolean readOnly
-
properties
protected ArrayOfSynchPropertyInfo properties
-
-
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
-
isManager
public boolean isManager()
Gets the value of the manager property.
-
setManager
public void setManager(boolean value)
Sets the value of the manager property.
-
isReadOnly
public boolean isReadOnly()
Gets the value of the readOnly property.
-
setReadOnly
public void setReadOnly(boolean value)
Sets the value of the readOnly property.
-
getProperties
public ArrayOfSynchPropertyInfo getProperties()
Gets the value of the properties property.- Returns:
- possible object is
ArrayOfSynchPropertyInfo
-
setProperties
public void setProperties(ArrayOfSynchPropertyInfo value)
Sets the value of the properties property.- Parameters:
value- allowed object isArrayOfSynchPropertyInfo
-
-