Class SchemaDefinitionType
- java.lang.Object
-
- com.evolveum.prism.xml.ns._public.types_3.SchemaDefinitionType
-
- All Implemented Interfaces:
JaxbVisitable
,Serializable
,Cloneable
public class SchemaDefinitionType extends Object implements Cloneable, Serializable, JaxbVisitable
Type for prism schema definition. It currently contains XSD schema definition. But other languages may be supported later.Java class for SchemaDefinitionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SchemaDefinitionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchemaDefinitionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
SchemaDefinitionType
clone()
boolean
equals(Object obj)
boolean
equals(Object obj, boolean isLiteral)
List<Element>
getAny()
Element
getSchema()
int
hashCode()
void
setSchema(Element schema)
-
-
-
Method Detail
-
getSchema
public Element getSchema()
-
setSchema
public void setSchema(Element schema)
-
equals
public boolean equals(Object obj, boolean isLiteral)
-
clone
public SchemaDefinitionType clone() throws CloneNotSupportedException
- Overrides:
clone
in classObject
- Throws:
CloneNotSupportedException
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
accept
in interfaceJaxbVisitable
-
-