/webportal/src/main/java/au/org/emii/portal/aspect/LogSetterValue.java
Java | 19 lines | 8 code | 3 blank | 8 comment | 0 complexity | c4f49c3132f6bcd9d0db097be4c07e75 MD5 | raw file
1/* 2 * To change this template, choose Tools | Templates 3 * and open the template in the editor. 4 */ 5 6package au.org.emii.portal.aspect; 7 8import java.lang.annotation.ElementType; 9import java.lang.annotation.Retention; 10import java.lang.annotation.RetentionPolicy; 11import java.lang.annotation.Target; 12 13/** 14 * 15 * @author geoff 16 */ 17@Target( {ElementType.METHOD }) 18@Retention(RetentionPolicy.RUNTIME) 19public @interface LogSetterValue {}