Package com.apama.jmon.annotation
Annotation Type Application
-
@Documented @Target({TYPE,PACKAGE}) @Retention(RUNTIME) public @interface ApplicationThis Annotation is used to document a JMON application. There should only be one entity annotated with this annotation per jmon jar.The utility classes
DirectoryProcessorandJarProcessorthat are used to automatically generate the jmon-jar.xml deployment descriptor file will process this annotation.- See Also:
EventType,MonitorType,DirectoryProcessor,JarProcessor
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringauthorEnables the author to specify an author of the Application (meta info for human consumption).java.lang.StringcompanyEnables the author to specify a company that is the owner of the Application (meta info for human consumption).java.lang.StringdescriptionEnables the author to specify a description of the Application (meta info for human consumption).java.lang.StringnameEnables the author to specify a name of the Application.java.lang.StringversionEnables the author to specify a version of the Application (meta info for human consumption).
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringclasspathSpecifies the classpath that will be used for the classloader of this application.
-
-
-
-
classpath
java.lang.String classpath
Specifies the classpath that will be used for the classloader of this application. Entries should be delimited by semicolons, and may include ${env:VARNAME} or ${sys:VARNAME} placeholders that will be replaced by the value of the specified environment variable or Java system property.- Default:
- ""
-
-