public class BeanSerializer extends java.lang.Object implements Serializer, java.io.Serializable
Modifier and Type | Field and Description |
---|---|
protected static org.apache.commons.logging.Log |
log |
protected BeanPropertyDescriptor[] |
propertyDescriptor |
protected TypeDesc |
typeDesc |
Constructor and Description |
---|
BeanSerializer(java.lang.Class javaType,
QName xmlType) |
BeanSerializer(java.lang.Class javaType,
QName xmlType,
TypeDesc typeDesc) |
BeanSerializer(java.lang.Class javaType,
QName xmlType,
TypeDesc typeDesc,
BeanPropertyDescriptor[] propertyDescriptor) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMechanismType()
Gets the type of the XML processing mechanism and representation used by this Serializer.
|
protected org.xml.sax.Attributes |
getObjectAttributes(java.lang.Object value,
org.xml.sax.Attributes attributes,
SerializationContext context)
Check for meta-data in the bean that will tell us if any of the
properties are actually attributes, add those to the element
attribute list
|
void |
serialize(QName name,
org.xml.sax.Attributes attributes,
java.lang.Object value,
SerializationContext context)
Serialize a bean.
|
protected void |
writeAttribute(Types types,
java.lang.String fieldName,
java.lang.Class fieldType,
QName fieldXmlType,
org.w3c.dom.Element where)
write aa attribute element and append it to the 'where' Node
|
protected void |
writeField(Types types,
java.lang.String fieldName,
QName xmlType,
java.lang.Class fieldType,
boolean isUnbounded,
boolean isOmittable,
org.w3c.dom.Element where,
boolean isAnonymous,
QName itemQName)
write a schema representation of the given Class field and append it to
the where Node, recurse on complex types
|
org.w3c.dom.Element |
writeSchema(java.lang.Class javaType,
Types types)
Return XML schema for the specified type, suitable for insertion into
the <types> element of a WSDL document, or underneath an
<element> or <attribute> declaration.
|
protected static org.apache.commons.logging.Log log
protected BeanPropertyDescriptor[] propertyDescriptor
protected TypeDesc typeDesc
public BeanSerializer(java.lang.Class javaType, QName xmlType)
public BeanSerializer(java.lang.Class javaType, QName xmlType, TypeDesc typeDesc, BeanPropertyDescriptor[] propertyDescriptor)
public void serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context) throws java.io.IOException
name
- is the element nameattributes
- are the attributes...serialize is free to add more.value
- is the valuecontext
- is the SerializationContextjava.io.IOException
public java.lang.String getMechanismType()
Serializer
getMechanismType
in interface Serializer
public org.w3c.dom.Element writeSchema(java.lang.Class javaType, Types types) throws java.lang.Exception
javaType
- the Java Class we're writing out schema fortypes
- the Java2WSDL Types object which holds the context
for the WSDL being generated.java.lang.Exception
Types
protected void writeField(Types types, java.lang.String fieldName, QName xmlType, java.lang.Class fieldType, boolean isUnbounded, boolean isOmittable, org.w3c.dom.Element where, boolean isAnonymous, QName itemQName) throws java.lang.Exception
fieldName
- name of the fieldxmlType
- the schema type of the fieldfieldType
- type of the fieldisUnbounded
- causes maxOccurs="unbounded" if setwhere
- location for the generated schema nodeitemQName
- java.lang.Exception
protected void writeAttribute(Types types, java.lang.String fieldName, java.lang.Class fieldType, QName fieldXmlType, org.w3c.dom.Element where) throws java.lang.Exception
fieldName
- name of the fieldfieldType
- type of the fieldwhere
- location for the generated schema nodejava.lang.Exception
protected org.xml.sax.Attributes getObjectAttributes(java.lang.Object value, org.xml.sax.Attributes attributes, SerializationContext context)
value
- the object we are serializingCopyright ? 2005 Apache Web Services Project. All Rights Reserved.