Package org.bedework.synch.shared
Class SynchPropertyInfo
- java.lang.Object
-
- org.bedework.synch.wsmessages.SynchPropertyInfoType
-
- org.bedework.synch.shared.SynchPropertyInfo
-
public class SynchPropertyInfo extends org.bedework.synch.wsmessages.SynchPropertyInfoTypeInformation about a single connector property. This information will be published by the system allowing clients to determine what properties are needed.- Author:
- Mike Douglass
-
-
Field Summary
Fields Modifier and Type Field Description static StringtypeBooleanstatic StringtypeCalProcessingstatic StringtypeDatestatic StringtypeDateTimestatic StringtypeDurationstatic StringtypeIntegerstatic StringtypePasswordstatic StringtypeStringstatic StringtypeUri
-
Constructor Summary
Constructors Constructor Description SynchPropertyInfo(String name, boolean secure, String type, String description, boolean required)No-value constructorSynchPropertyInfo(String name, boolean secure, String type, String description, boolean required, String value)Constructor with current or default value
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()
-
-
-
Field Detail
-
typeBoolean
public static String typeBoolean
-
typeCalProcessing
public static String typeCalProcessing
- See Also:
CalProcessingType
-
typeDate
public static String typeDate
-
typeDateTime
public static String typeDateTime
-
typeDuration
public static String typeDuration
-
typeInteger
public static String typeInteger
-
typePassword
public static String typePassword
-
typeString
public static String typeString
-
typeUri
public static String typeUri
-
-
Constructor Detail
-
SynchPropertyInfo
public SynchPropertyInfo(String name, boolean secure, String type, String description, boolean required)
No-value constructor- Parameters:
name- - name for the propertysecure- - true if this property value should be hidden, e.g passwordtype- - type of the property - see abovedescription- - of the propertyrequired- - true if this property is required
-
SynchPropertyInfo
public SynchPropertyInfo(String name, boolean secure, String type, String description, boolean required, String value)
Constructor with current or default value- Parameters:
name- - name for the propertysecure- - true if this property value should be hidden, e.g passwordtype- - type of the property - see abovedescription- - of the propertyrequired- - true if this property is requiredvalue- - the default or current value as a Java string representation
-
-