package org.ovirt.engine.core.common.action; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation is to mark a getter method of a parameter * that should not appear in the debug log */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface ShouldNotBeLogged { }