Class JaxbStoredProcedureParameterImpl
java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbStoredProcedureParameterImpl
- All Implemented Interfaces:
Serializable
@Target({}) @Retention(RUNTIME)
public @interface StoredProcedureParameter {
String name() default "";
ParameterMode mode() default ParameterMode.IN;
Class<?> type();
}
<p>Java class for stored-procedure-parameter complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="stored-procedure-parameter">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
</sequence>
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="mode" type="{http://www.hibernate.org/xsd/orm/mapping}parameter-mode" />
</restriction>
</complexContent>
</complexType>
}</pre>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Stringprotected Stringprotected ParameterModeprotected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetClazz()Gets the value of the clazz property.Gets the value of the description property.getMode()Gets the value of the mode property.getName()Gets the value of the name property.voidSets the value of the clazz property.voidsetDescription(String value) Sets the value of the description property.voidsetMode(ParameterMode value) Sets the value of the mode property.voidSets the value of the name property.
-
Field Details
-
description
-
name
-
clazz
-
mode
-
-
Constructor Details
-
JaxbStoredProcedureParameterImpl
public JaxbStoredProcedureParameterImpl()
-
-
Method Details