Class DocumentEventDeclaration.ResolvedLocation

java.lang.Object
com.flowable.platform.engine.impl.documentevent.DocumentEventDeclaration.ResolvedLocation
Enclosing class:
DocumentEventDeclaration

public static class DocumentEventDeclaration.ResolvedLocation extends Object
One row of the "Where" section. scope retains the modeler-facing intent (root / instance / scope / any). At parse time only scope and value are set — value carries the raw modeler input (folder path, possibly containing a JUEL expression) for root / instance; for scope / any it is empty. At runtime the subscription registrar resolves expressions, looks up the matching content folder, and fills in folderId (root / instance) or scopeFolderId (scope).
  • Field Details

    • scope

      protected String scope
    • value

      protected String value
    • folderId

      protected String folderId
    • scopeFolderId

      protected String scopeFolderId
  • Constructor Details

    • ResolvedLocation

      public ResolvedLocation(String scope, String value)
  • Method Details

    • getScope

      public String getScope()
    • setScope

      public void setScope(String scope)
    • getValue

      public String getValue()
    • setValue

      public void setValue(String value)
    • getFolderId

      public String getFolderId()
    • setFolderId

      public void setFolderId(String folderId)
    • getScopeFolderId

      public String getScopeFolderId()
    • setScopeFolderId

      public void setScopeFolderId(String scopeFolderId)