// a xsd:NOTATION
myRegister(Constants.XSD_NOTATION, org.apache.axis.types.Notation.class,
new BeanSerializerFactory(org.apache.axis.types.Notation.class,
Constants.XSD_NOTATION),
new BeanDeserializerFactory(org.apache.axis.types.Notation.class,
Constants.XSD_NOTATION)
);
// a xsd:XSD_ENTITY
myRegister(Constants.XSD_ENTITY, org.apache.axis.types.Entity.class,
new SimpleSerializerFactory(org.apache.axis.types.Entity.class,
Constants.XSD_ENTITY),
new SimpleDeserializerFactory(org.apache.axis.types.Entity.class,
Constants.XSD_ENTITY)
);
// a xsd:XSD_ENTITIES
myRegister(Constants.XSD_ENTITIES, org.apache.axis.types.Entities.class,
new SimpleSerializerFactory(org.apache.axis.types.Entities.class,
Constants.XSD_ENTITIES),
new SimpleDeserializerFactory(org.apache.axis.types.Entities.class,
Constants.XSD_ENTITIES)
);
// a xsd:XSD_IDREF
myRegister(Constants.XSD_IDREF, org.apache.axis.types.IDRef.class,
new SimpleSerializerFactory(org.apache.axis.types.IDRef.class,
Constants.XSD_IDREF),
new SimpleDeserializerFactory(org.apache.axis.types.IDRef.class,
Constants.XSD_IDREF)
);
// a xsd:XSD_XSD_IDREFS
myRegister(Constants.XSD_IDREFS, org.apache.axis.types.IDRefs.class,
new SimpleSerializerFactory(org.apache.axis.types.IDRefs.class,
Constants.XSD_IDREFS),
new SimpleDeserializerFactory(org.apache.axis.types.IDRefs.class,
Constants.XSD_IDREFS)
);
// a xsd:Duration
myRegister(Constants.XSD_DURATION, org.apache.axis.types.Duration.class,
new SimpleSerializerFactory(org.apache.axis.types.Duration.class,
Constants.XSD_DURATION),
new SimpleDeserializerFactory(org.apache.axis.types.Duration.class,
Constants.XSD_DURATION)
);
// a xsd:anyURI
myRegister(Constants.XSD_ANYURI, org.apache.axis.types.URI.class,
new SimpleSerializerFactory(org.apache.axis.types.URI.class,
Constants.XSD_ANYURI),
new SimpleDeserializerFactory(org.apache.axis.types.URI.class,
Constants.XSD_ANYURI)
);
// a xsd:schema
myRegister(Constants.XSD_SCHEMA, org.apache.axis.types.Schema.class,
new BeanSerializerFactory(org.apache.axis.types.Schema.class,
Constants.XSD_SCHEMA),
new BeanDeserializerFactory(org.apache.axis.types.Schema.class,
Constants.XSD_SCHEMA)
);
// All array objects automatically get associated with the SOAP_ARRAY.
// There is no way to do this with a hash table,