blob: 398cd2fc06a42838db2e3832dce0fcdf77bb3825 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
// 02/08/2012-2.4 Guy Pelletier
// - 350487: JPA 2.1 Specification defined support for Stored Procedure Calls
package org.eclipse.persistence.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import jakarta.persistence.ParameterMode;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import static org.eclipse.persistence.annotations.Direction.IN;
/**
* A StoredProcedureParameter annotation is used within a
* NamedStoredProcedureQuery annotation.
*
* @see org.eclipse.persistence.annotations.NamedStoredProcedureQuery
* @author Guy Pelletier
* @since Oracle TopLink 11.1.1.0.0
*/
@Target({})
@Retention(RUNTIME)
public @interface StoredProcedureParameter {
/**
* (Optional) The direction of the stored procedure parameter.
* @deprecated
* @see #mode()
*/
@Deprecated
Direction direction() default IN;
/**
* (Optional) The direction of the stored procedure parameter.
*/
ParameterMode mode() default ParameterMode.IN;
/**
* (Optional) Stored procedure parameter name.
*/
String name() default "";
/**
* (Required) The query parameter name.
*/
String queryParameter();
/**
* (Optional) Define if the parameter is required, or optional and defaulted by the procedure.
*/
boolean optional() default false;
/**
* (Optional) The type of Java class desired back from the procedure,
* this is dependent on the type returned from the procedure.
*/
Class<?> type() default void.class;
/**
* (Optional) The JDBC type code, this is dependent on the type returned
* from the procedure.
*/
int jdbcType() default -1;
/**
* (Optional) The JDBC type name, this may be required for ARRAY or
* STRUCT types.
*/
String jdbcTypeName() default "";
}