Type to start searching...

VCardMapping

Maps message parts to elements in a vCard file.

Properties
default : string

The default string to be used for a primitive message part when there is no corresponding value in the message to format. Is not escaped.

delimiter : string

Used for delimiting a primitive message part collection. Defaults to ",".

encoding : string

The Java charset to use for encoding/decoding character data for the field value.

These are the charsets available on every implementation of the Java platform:

US-ASCII: Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set ISO-8859-1: ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1 UTF-8: Eight-bit UCS Transformation Format UTF-16BE: Sixteen-bit UCS Transformation Format, big-endian byte order (when decoding, ignore BOM; when encoding, do not write BOM) UTF-16LE: Sixteen-bit UCS Transformation Format, little-endian byte order (when decoding, ignore BOM; when encoding, do not write BOM) UTF-16: Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order mark. (when decoding, interpret BOM, defaulting to big-ending if no BOM; when encoding, use big-endian and write big-endian BOM)

Charset names are not case-sensitive.

name : string

The name to use for this part in the vCard message. Defaults to the message part name.

quoting

The quoting mode for non-printable data and delimiters. One of none, base64, qp (MIME quoted-printable), or vcard (backslash-escaped).

Valid values based on“string”.
none
base64
qp
vcard
subtype

Value subtype.

Valid values based on“string”.
date
dateTime
type

The type of vCard element to which the message part is mapped.

value - Map to the value part of the vCard field. parameter - Map to the value of a parameter on the vCard field. Name is used as the parameter name. group - Logical grouping of child parts. If name not empty, it is prefixed to every field name in the group.
Valid values based on“string”.
value
parameter
group
wrapping

The line wrapping mode. "whitespace" to wrap lines only on whitespace; "anywhere" to wrap lines anywhere.

Valid values based on“string”.
whitespace
anywhere
Parents
  • Value - A value (or primitive) message part.
  • Message - A message (or composite) message part.
  • Message
  • Message - A message carries information from a source system to a destination system over an integration channel.