org.apache.openejb.jee.bval.ObjectFactory Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.jee.bval;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.apache.openejb.jee.bval package.
* An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _PayloadTypeValue_QNAME = new QName("http://jboss.org/xml/ns/javax/validation/mapping", "value");
private final static QName _ElementTypeAnnotation_QNAME = new QName("http://jboss.org/xml/ns/javax/validation/mapping", "annotation");
private final static QName _ValidationConfig_QNAME = new QName("http://jboss.org/xml/ns/javax/validation/configuration", "validation-config");
private final static QName _ConstraintMappings_QNAME = new QName("http://jboss.org/xml/ns/javax/validation/mapping", "constraint-mappings");
private final static QName _ValidationConfigTypeConstraintMapping_QNAME = new QName("http://jboss.org/xml/ns/javax/validation/configuration", "constraint-mapping");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.openjeb.jee.bval
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link ValidationConfigType }
*/
public ValidationConfigType createValidationConfigType() {
return new ValidationConfigType();
}
/**
* Create an instance of {@link AnnotationType }
*/
public AnnotationType createAnnotationType() {
return new AnnotationType();
}
/**
* Create an instance of {@link ValidatedByType }
*/
public ValidatedByType createValidatedByType() {
return new ValidatedByType();
}
/**
* Create an instance of {@link ConstraintDefinitionType }
*/
public ConstraintDefinitionType createConstraintDefinitionType() {
return new ConstraintDefinitionType();
}
/**
* Create an instance of {@link ClassType }
*/
public ClassType createClassType() {
return new ClassType();
}
/**
* Create an instance of {@link GroupsType }
*/
public GroupsType createGroupsType() {
return new GroupsType();
}
/**
* Create an instance of {@link FieldType }
*/
public FieldType createFieldType() {
return new FieldType();
}
/**
* Create an instance of {@link ConstraintMappingsType }
*/
public ConstraintMappingsType createConstraintMappingsType() {
return new ConstraintMappingsType();
}
/**
* Create an instance of {@link PayloadType }
*/
public PayloadType createPayloadType() {
return new PayloadType();
}
/**
* Create an instance of {@link ElementType }
*/
public ElementType createElementType() {
return new ElementType();
}
/**
* Create an instance of {@link BeanType }
*/
public BeanType createBeanType() {
return new BeanType();
}
/**
* Create an instance of {@link GroupSequenceType }
*/
public GroupSequenceType createGroupSequenceType() {
return new GroupSequenceType();
}
/**
* Create an instance of {@link PropertyType }
*/
public PropertyType createPropertyType() {
return new PropertyType();
}
/**
* Create an instance of {@link ConstraintType }
*/
public ConstraintType createConstraintType() {
return new ConstraintType();
}
/**
* Create an instance of {@link GetterType }
*/
public GetterType createGetterType() {
return new GetterType();
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link String }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "value", scope = PayloadType.class)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
public JAXBElement createPayloadTypeValue(final String value) {
return new JAXBElement(_PayloadTypeValue_QNAME, String.class, PayloadType.class, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link AnnotationType }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "annotation", scope = ElementType.class)
public JAXBElement createElementTypeAnnotation(final AnnotationType value) {
return new JAXBElement(_ElementTypeAnnotation_QNAME, AnnotationType.class, ElementType.class, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link String }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "value", scope = ElementType.class)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
public JAXBElement createElementTypeValue(final String value) {
return new JAXBElement(_PayloadTypeValue_QNAME, String.class, ElementType.class, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link ValidationConfigType }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/configuration", name = "validation-config")
public JAXBElement createValidationConfig(final ValidationConfigType value) {
return new JAXBElement(_ValidationConfig_QNAME, ValidationConfigType.class, null, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link ConstraintMappingsType }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "constraint-mappings")
public JAXBElement createConstraintMappings(final ConstraintMappingsType value) {
return new JAXBElement(_ConstraintMappings_QNAME, ConstraintMappingsType.class, null, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link String }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/configuration", name = "constraint-mapping", scope = ValidationConfigType.class)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
public JAXBElement createValidationConfigTypeConstraintMapping(final String value) {
return new JAXBElement(_ValidationConfigTypeConstraintMapping_QNAME, String.class, ValidationConfigType.class, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link String }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "value", scope = GroupSequenceType.class)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
public JAXBElement createGroupSequenceTypeValue(final String value) {
return new JAXBElement(_PayloadTypeValue_QNAME, String.class, GroupSequenceType.class, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link String }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "value", scope = ValidatedByType.class)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
public JAXBElement createValidatedByTypeValue(final String value) {
return new JAXBElement(_PayloadTypeValue_QNAME, String.class, ValidatedByType.class, value);
}
/**
* Create an instance of {@link javax.xml.bind.JAXBElement }{@code <}{@link String }{@code >}}
*/
@XmlElementDecl(namespace = "http://jboss.org/xml/ns/javax/validation/mapping", name = "value", scope = GroupsType.class)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
public JAXBElement createGroupsTypeValue(final String value) {
return new JAXBElement(_PayloadTypeValue_QNAME, String.class, GroupsType.class, value);
}
}