| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.core.framework.parameter; |
| 17 | |
|
| 18 | |
import java.lang.annotation.ElementType; |
| 19 | |
import java.lang.annotation.Retention; |
| 20 | |
import java.lang.annotation.RetentionPolicy; |
| 21 | |
import java.lang.annotation.Target; |
| 22 | |
|
| 23 | |
|
| 24 | |
public final class ParameterConstants { |
| 25 | |
public static final String ALL_COMPONENT = "All"; |
| 26 | |
public static final String DOCUMENT_COMPONENT = "Document"; |
| 27 | |
public static final String LOOKUP_COMPONENT = "Lookup"; |
| 28 | |
public static final String BATCH_COMPONENT = "Batch"; |
| 29 | |
|
| 30 | |
@Retention(RetentionPolicy.RUNTIME) |
| 31 | |
@Target( { ElementType.TYPE }) |
| 32 | |
public static @interface NAMESPACE { |
| 33 | |
String namespace(); |
| 34 | |
} |
| 35 | |
|
| 36 | |
@Retention(RetentionPolicy.RUNTIME) |
| 37 | |
@Target( { ElementType.TYPE }) |
| 38 | |
public static @interface COMPONENT { |
| 39 | |
String component(); |
| 40 | |
} |
| 41 | |
|
| 42 | 0 | private ParameterConstants() { |
| 43 | 0 | throw new UnsupportedOperationException("do not call"); |
| 44 | |
} |
| 45 | |
} |