Tabnine Logo
Stage.isIncludeInStageOverview
Code IndexAdd Tabnine to your IDE (free)

How to use
isIncludeInStageOverview
method
in
org.flowable.cmmn.model.Stage

Best Java code snippets using org.flowable.cmmn.model.Stage.isIncludeInStageOverview (Showing top 2 results out of 315)

origin: org.flowable/flowable-cmmn-converter

@Override
protected void writePlanItemDefinitionSpecificAttributes(Stage stage, XMLStreamWriter xtw) throws Exception {
  super.writePlanItemDefinitionSpecificAttributes(stage, xtw);
  if (StringUtils.isNotEmpty(stage.getFormKey())) {
    xtw.writeAttribute(FLOWABLE_EXTENSIONS_PREFIX, FLOWABLE_EXTENSIONS_NAMESPACE, ATTRIBUTE_FORM_KEY, stage.getFormKey());
  }
  if (stage.isAutoComplete()) {
    xtw.writeAttribute(ATTRIBUTE_IS_AUTO_COMPLETE, Boolean.toString(stage.isAutoComplete()));
  }
  if (StringUtils.isNotEmpty(stage.getAutoCompleteCondition())) {
    xtw.writeAttribute(FLOWABLE_EXTENSIONS_PREFIX, FLOWABLE_EXTENSIONS_NAMESPACE, ATTRIBUTE_AUTO_COMPLETE_CONDITION, stage.getAutoCompleteCondition());
  }
  if (stage.getDisplayOrder() != null) {
    xtw.writeAttribute(FLOWABLE_EXTENSIONS_PREFIX, FLOWABLE_EXTENSIONS_NAMESPACE, ATTRIBUTE_DISPLAY_ORDER, String.valueOf(stage.getDisplayOrder()));
  }
  if (!stage.isIncludeInStageOverview()) { // if it's missing, it's true by default
    xtw.writeAttribute(FLOWABLE_EXTENSIONS_PREFIX, FLOWABLE_EXTENSIONS_NAMESPACE, ATTRIBUTE_INCLUDE_IN_STAGE_OVERVIEW, "false");
  }
}
origin: org.flowable/flowable-cmmn-rest

List<StageResponse> stageResponses = new ArrayList<>(stages.size());
for (Stage stage : stages) {
  if (stage.isIncludeInStageOverview()) {
    StageResponse stageResponse = new StageResponse(stage.getId(), stage.getName());
    Optional<PlanItemInstance> planItemInstance = getPlanItemInstance(stagePlanItemInstances, stage);
org.flowable.cmmn.modelStageisIncludeInStageOverview

Popular methods of Stage

  • getId
  • getPlanItems
  • getExitCriteria
  • getFormKey
  • getName
  • findPlanItemDefinitionsOfType
  • findPlanItemInPlanFragmentOrDownwards
  • isAutoComplete
  • isPlanModel
  • <init>
  • addPlanItemDefinition
  • findPlanItemDefinitionInStageOrUpwards
  • addPlanItemDefinition,
  • findPlanItemDefinitionInStageOrUpwards,
  • findPlanItemForPlanItemDefinitionInPlanFragmentOrUpwards,
  • findPlanItemInPlanFragmentOrUpwards,
  • getAutoCompleteCondition,
  • getDisplayOrder,
  • getParentStage,
  • getPlanItem,
  • getPlanItemDefinitions

Popular in Java

  • Making http post requests using okhttp
  • startActivity (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onRequestPermissionsResult (Fragment)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now