All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.inkstand.schemas.jcr_import.PropertyDescriptor Maven / Gradle / Ivy

Go to download

Java Content Repository (JCR) support, providing JCR specific assertions and various types of content repositories as Test Rules.

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.24 at 08:50:49 PM UTC 
//


package io.inkstand.schemas.jcr_import;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * Defines the structure for defining a JCR Property.
 *                 
 * 
 * 

Java class for propertyDescriptor complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="propertyDescriptor">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>anySimpleType">
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="jcrType" use="required" type="{http://inkstand.io/schemas/jcr-import}propertyValueType" />
 *       <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "propertyDescriptor", propOrder = { "value" }) public class PropertyDescriptor { @XmlValue @XmlSchemaType(name = "anySimpleType") protected Object value; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "jcrType", required = true) protected PropertyValueType jcrType; @XmlAttribute(name = "ref") @XmlSchemaType(name = "anyURI") protected String ref; /** * Gets the value of the value property. * * @return * possible object is * {@link Object } * */ public Object getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link Object } * */ public void setValue(Object value) { this.value = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the jcrType property. * * @return * possible object is * {@link PropertyValueType } * */ public PropertyValueType getJcrType() { return jcrType; } /** * Sets the value of the jcrType property. * * @param value * allowed object is * {@link PropertyValueType } * */ public void setJcrType(PropertyValueType value) { this.jcrType = value; } /** * Gets the value of the ref property. * * @return * possible object is * {@link String } * */ public String getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is * {@link String } * */ public void setRef(String value) { this.ref = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy