Annotation Type LocalDeploy


  • @Inherited
    @Deprecated
    @Retention(RUNTIME)
    @Target({TYPE,METHOD})
    public @interface LocalDeploy
    Deprecated.
    since 10.1, use Deploy
    A list of artifacts to be deployed.

    Deployable artifacts are either bundles either components:

    • A bundle entry is represented by the bundle symbolic name.
    • A component entry is represented by an URI of the form: symbolicName:componentXmlPath, where symbolicName is the symbolic name of the bundle owning the component.
    Example:
     @Deploy("org.nuxeo.runtime")
     @Deploy("org.nuxeo.core:OSGI-INF/component.xml")
     
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String[] value
      Deprecated.
      The local resource URI.
    • Element Detail

      • value

        String[] value
        Deprecated.
        The local resource URI. The resource uri is of the form bundleId:path/to/resource where resource is a test resource located in src/test/resources that should be resolved using current class loader and deployed as part of the given bundle.