001//
002// Name
003//      $RCSfile: KeyField.java,v $
004// 
005// Copyright
006//      Confidential Property of Kabira Technologies, Inc.
007//      Copyright 2009 by Kabira Technologies, Inc.
008//      All rights reserved.
009//
010// History
011//      $Revision: 1.1.2.1 $ $Date: 2009/09/01 01:08:15 $
012//
013package com.kabira.platform.annotation;
014
015import java.lang.annotation.*;
016
017/** This annotation describes the mapping between constructor arguments 
018  * and the key field that the argument sets.
019  */
020@Retention(RetentionPolicy.RUNTIME)
021@Target(ElementType.PARAMETER)
022public @interface KeyField
023{
024    /** The field name this parameter maps to.
025      */
026    String fieldName();
027}
028