001 /*
002
003 * file RpcEnumId.java
004
005 *
006
007 * IBM Confidential
008
009 * OCO Source Materials
010
011 * Rational ClearCase
012
013 * (C) Copyright IBM Corp. 2010. All rights reserved.
014
015 *
016
017 * The source code for this program is not published or otherwise
018
019 * divested of its trade secrets, irrespective of what has been
020
021 * deposited with the U.S. Copyright Office.
022
023 */
024
025 package com.ibm.rational.wvcm.stpex.annotation;
026
027
028
029 import java.lang.annotation.ElementType;
030
031 import java.lang.annotation.Retention;
032
033 import java.lang.annotation.RetentionPolicy;
034
035 import java.lang.annotation.Target;
036
037
038
039 @Retention(RetentionPolicy.SOURCE)
040
041 @Target(ElementType.FIELD)
042
043 public @interface RpcEnum {
044
045 int id();
046
047 String ns() default "";
048
049 String simpleName() default "";
050
051 }
052