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

com.yahoo.elide.annotation.LifeCycleHookBindings Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2020, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.annotation;


import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * A group of repeatable LifeCycleHookBinding annotations.
 */
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface LifeCycleHookBindings {
    LifeCycleHookBinding[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy