All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osgl.inject.annotation.Transform Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
package org.osgl.inject.annotation;

import org.osgl.inject.BeanTransformer;

import java.lang.annotation.*;

/**
 * Used to tag an annotation with {@link org.osgl.Osgl.Function}
 * specification.
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.ANNOTATION_TYPE, ElementType.FIELD, ElementType.PARAMETER})
public @interface Transform {
    /**
     * Specify the {@link BeanTransformer bean transformer} implementation
     */
    Class value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy