001/* 002 * SPDX-FileCopyrightText: none 003 * SPDX-License-Identifier: CC0-1.0 004 */ 005 006package gov.nist.secauto.metaschema.databind.model.annotations; 007 008import static java.lang.annotation.ElementType.FIELD; 009import static java.lang.annotation.RetentionPolicy.RUNTIME; 010 011import java.lang.annotation.Retention; 012import java.lang.annotation.Target; 013 014/** 015 * Indicates that the property is to be ignored by the Module binding system. 016 */ 017@Retention(RUNTIME) 018@Target({ FIELD }) 019public @interface Ignore { 020 // no fields 021}