io.micronaut.data.jdbc.annotation.ColumnTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-data-jdbc Show documentation
Show all versions of micronaut-data-jdbc Show documentation
Data Repository Support for Micronaut
/*
* Copyright 2017-2019 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.data.jdbc.annotation;
import io.micronaut.context.annotation.AliasFor;
import io.micronaut.data.annotation.DataTransformer;
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.RetentionPolicy.RUNTIME;
/**
* Inspired by Hibernate's annotation of the same name. This annotation allows
* for a custom SQL expression when reading and writing a property.
*
* The write expression must contain exactly one '?' placeholder for the value.
*
* For example: read="decrypt(payment_.credit_card_num)" write="encrypt(?)"
*
* @author graemerocher
* @since 1.0
*/
@Target({FIELD, METHOD})
@Retention(RUNTIME)
public @interface ColumnTransformer {
/**
* A SQL expression used to the read the column. Note that to reference a column you must use the appropriate alias prefix,
* which is the table name followed by an underscore. For example for an entity called Project
the alias would be project_
.
* @return A SQL expression used to read the column.
*/
@AliasFor(annotation = DataTransformer.class, member = "read")
String read() default "";
/**
* A SQL expression used to write the column. Must have exactly one '?' placeholder.
*
* @return The expression
*/
@AliasFor(annotation = DataTransformer.class, member = "write")
String write() default "";
}