org.eclipse.persistence.annotations.Property Maven / Gradle / Ivy
Show all versions of eclipselink Show documentation
/*
* Copyright (c) 1998, 2024 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:
// Andrei Ilitchev (Oracle), April 8, 2008
// - New file introduced for bug 217168.
// 06/12/2017-2.7 Lukas Jungmann
// - 518155: [jpa22] add support for repeatable annotations
package org.eclipse.persistence.annotations;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Annotation for a user defined property.
* A single Property may be specified directly on a mapped attribute or its get/set method.
* Multiple occurrences of Property annotation can be wrapped into {@linkplain Properties}
* annotation.
*
* Property may be assigned to either a mapped attribute (or its get/set method)
* within Entity, MappedSuperclass and Embeddable class;
* or to Entity, MappedSuperclass and Embeddable class.
*
* In case orm xml is used Property and Properties annotations specified on
* mapped attributes are ignored, specified on a class are merged with the ones
* specified in orm xml with the latter taking precedence in case of conflicts.
*
* Properties defined in MappedSuperclass are passed to all inheriting Entities
* and MappedSuperclasses. In case of a conflict property value defined directly
* on a class always overrides the value passed from class's parent.
*
* @see Properties
* @see Transformation
* @see VariableOneToOne
*
* @author Andrei Ilitchev
* @since EclipseLink 1.0
*/
@Target({METHOD, FIELD, TYPE})
@Retention(RUNTIME)
@Repeatable(Properties.class)
public @interface Property {
/**
* Property name.
*/
String name();
/**
* String representation of Property value,
* converted to an instance of {@linkplain #valueType}.
*/
String value();
/**
* Property value type.
* The value is converted to valueType by {@linkplain org.eclipse.persistence.internal.helper.ConversionManager}.
*
* If specified must be a simple type that could be handled by
* {@linkplain org.eclipse.persistence.internal.helper.ConversionManager}:
* numerical, boolean, temporal.
*/
Class> valueType() default String.class;
}