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