org.oasisopen.sca.annotation
Annotation Type Intent


@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
public @interface Intent

The @Intent annotation is used for the creation of new annotations for specific intents. It is not expected that the @Intent annotation will be used in application code.


Optional Element Summary
 java.lang.String localPart
          The name of the intent within its namespace.
 java.lang.String targetNamespace
          The XML namespace for the intent.
 java.lang.String value
          The qualified name of the intent, in the form defined by javax.xml.namespace.QName#toString.
 

value

public abstract java.lang.String value
The qualified name of the intent, in the form defined by javax.xml.namespace.QName#toString.

Returns:
the qualified name of the intent
Default:
""

targetNamespace

public abstract java.lang.String targetNamespace
The XML namespace for the intent.

Returns:
the XML namespace for the intent
Default:
""

localPart

public abstract java.lang.String localPart
The name of the intent within its namespace.

Returns:
name of the intent within its namespace
Default:
""