com.flowlogix.web.services.annotations.CDI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowlogix-tapestry Show documentation
Show all versions of flowlogix-tapestry Show documentation
Flow Logix Utility Library for Tapestry
/**
* @(#)CDI.java
*
* Copyright 2009 by Movellas ApS
* All rights reserved.
*/
package com.flowlogix.web.services.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* @author Magnus
*/
@Target(
{ FIELD})
@Retention(RUNTIME)
public @interface CDI {
}