Class JaxbStoredProcedureParameterImpl

java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbStoredProcedureParameterImpl
All Implemented Interfaces:
Serializable

public class JaxbStoredProcedureParameterImpl extends Object implements 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 Details

  • Constructor Details

    • JaxbStoredProcedureParameterImpl

      public JaxbStoredProcedureParameterImpl()
  • Method Details

    • getDescription

      public String getDescription()
      Gets the value of the description property.
      Returns:
      possible object is String
    • setDescription

      public void setDescription(String value)
      Sets the value of the description property.
      Parameters:
      value - allowed object is String
    • getName

      public String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName(String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • getClazz

      public String getClazz()
      Gets the value of the clazz property.
      Returns:
      possible object is String
    • setClazz

      public void setClazz(String value)
      Sets the value of the clazz property.
      Parameters:
      value - allowed object is String
    • getMode

      public ParameterMode getMode()
      Gets the value of the mode property.
      Returns:
      possible object is String
    • setMode

      public void setMode(ParameterMode value)
      Sets the value of the mode property.
      Parameters:
      value - allowed object is String