Uses of Class
com.ca.jcs.converter.meta.PropertyConverter

Packages that use PropertyConverter
com.ca.jcs.converter.connector   
com.ca.jcs.converter.eval   
com.ca.jcs.converter.meta   
com.ca.jcs.sdk.converter   
 

Uses of PropertyConverter in com.ca.jcs.converter.connector
 

Subclasses of PropertyConverter in com.ca.jcs.converter.connector
 class DNPropertyConverter
          Convert DNs (Distinguished Names) to/from connector-speak/LDAP, by making use of a reference to the connector itself.
 

Uses of PropertyConverter in com.ca.jcs.converter.eval
 

Methods in com.ca.jcs.converter.eval that return PropertyConverter
 PropertyConverter DefaultConverterManager.createPropertyConverter(MetaPluginConfig config, MetaObjectClassMapping classMap, DataModelProperty prop)
           
 PropertyConverter ConverterManager.createPropertyConverter(MetaPluginConfig config, MetaObjectClassMapping classMap, DataModelProperty prop)
          Create an instance of config converter plug-in that must have a constructor taking a MetaObjectClassMapping and DataModelProperty as arguments.
 

Methods in com.ca.jcs.converter.eval that return types with arguments of type PropertyConverter
 List<PropertyConverter> PropertyConverters.getConvertersOfType(PropertyConverters.ConverterType type)
          Return converters matching type, null for all
 List<PropertyConverter> PropertyConverters.getPropertyConverters()
           
 

Method parameters in com.ca.jcs.converter.eval with type arguments of type PropertyConverter
 void PropertyConverters.setPropertyConverters(List<PropertyConverter> pvs)
           
 

Uses of PropertyConverter in com.ca.jcs.converter.meta
 

Subclasses of PropertyConverter in com.ca.jcs.converter.meta
 class BoolPropertyConverter
          Convert boolean values; either numeric (1/0) to symbolic (true/false) or vice-versa, depending on configuration of converter and metadata settings on supplied property.
 class CountryPropertyConverter
          Converts country name values for a enum valued property named "country" (case-insensitive) to the country's two letter ISO code ("Australia" in LDAP maps to "AU" in connector-speak) if it has a MetaDataDefs.MD_IS_STORE_CODE metadata property set to true.
 class CSVMultiValuePropertyFlattener
          Convert values for attribute matching a multi-valued property to a flat string specifying an SQL encoded list.
 class EncyptPropertyConverter
          Encrypt values for an attribute matching a property based on settings provided in the property's metadata.
 class EnumPropertyConverter
          Convert symbolic values for a enum valued property to numeric form ("Tuesday" in lDAP maps to "2" in connector-speak), if it has a MetaDataDefs.MD_IS_STORE_NUMERIC metadata property which is set to true where enum's symbolic values are replaced by their ordinal values.
 class ForceCasePropertyConverter
          Converter that can force string values to be in particular case ["UPPER" | "LOWER"] $Id: ForceCasePropertyConverter.java 41662 2009-03-03 02:31:41Z khaam03 $
 class JavaObjectPropertyConverter
          Convert values for attribute to the Java Object matching the value type specified for their DataModelProperty.
 class MultiValuePropertyFlattener
          Convert values for attribute matching a multi-valued property to a flattened string using the style specified by the MetaDataDefs.MD_FLATTEN_STYLE metadata.
 class NumericBasePropertyConverter
          Property converter capable of translating from one numeric base to another.
 class ORedMultiValuePropertyFlattener
          A flattening converter that performs flattening by performing a logical OR operation on the target attribute values.
 class PadPropertyConverter
          Apply configurable padding to a value, usually after most/all converters have ran.
 class RegexPropertyConverter
          Encrypt values for an attribute matching a property based on settings provided in the property's metadata.
 class SQLMultiValuePropertyFlattener
          Convert values for attribute matching a multi-valued property to a flat string specifying an SQL encoded list.
 class StringArrayPropertyConverter
          Convert values for attribute matching a multi-valued property to a String[].
 class TimeNumericPropertyConverter
          Convert values for a time valued property to numeric form, if it has a MetaDataDefs.MD_IS_STORE_NUMERIC metadata property which is set to true where the time is replaced by a long specifying equivalent number of milliseconds.
 class TrimPropertyConverter
          When registered causes attribute's values to be trimmed, i.e. leading and trailing spaces will be removed.
 class XMLMultiValuePropertyFlattener
          Convert values for attribute matching a multi-valued property to a flat XML encoded string.
 

Uses of PropertyConverter in com.ca.jcs.sdk.converter
 

Subclasses of PropertyConverter in com.ca.jcs.sdk.converter
 class DemoFlattenPropertyConverter
          An example of a property converter, which can be triggered on a attribute according to the presence of one or more metadata settings on it (as defined when it is registered in conf/connector.xml (connector-specific scope) or conf/server_jcs.xml (global scope)).
 



Created 2011-07-14 13:27 EST