Codota Logo
DecisionDefinitionEntity.getKey
Code IndexAdd Codota to your IDE (free)

How to use
getKey
method
in
org.camunda.bpm.engine.impl.dmn.entity.repository.DecisionDefinitionEntity

Best Java code snippets using org.camunda.bpm.engine.impl.dmn.entity.repository.DecisionDefinitionEntity.getKey (Showing top 9 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

public void checkReadDecisionDefinition(DecisionDefinitionEntity decisionDefinition) {
 getAuthorizationManager().checkAuthorization(READ, DECISION_DEFINITION, decisionDefinition.getKey());
}
origin: camunda/camunda-bpm-platform

public void checkUpdateDecisionDefinition(DecisionDefinitionEntity decisionDefinition) {
 getAuthorizationManager().checkAuthorization(UPDATE, DECISION_DEFINITION, decisionDefinition.getKey());
}
origin: camunda/camunda-bpm-platform

public void checkReadDecisionDefinition(DecisionDefinitionEntity decisionDefinition) {
 getAuthorizationManager().checkAuthorization(READ, DECISION_DEFINITION, decisionDefinition.getKey());
}
origin: camunda/camunda-bpm-platform

public void checkUpdateDecisionDefinition(DecisionDefinitionEntity decisionDefinition) {
 getAuthorizationManager().checkAuthorization(UPDATE, DECISION_DEFINITION, decisionDefinition.getKey());
}
origin: camunda/camunda-bpm-platform

@Override
public Object execute(CommandContext commandContext) {
 ensureNotNull("decisionDefinitionId", decisionDefinitionId);
 DecisionDefinitionEntity decisionDefinition = commandContext
   .getDecisionDefinitionManager()
   .findDecisionDefinitionById(decisionDefinitionId);
 ensureNotNull("No decision definition found with id: " + decisionDefinitionId, "decisionDefinition", decisionDefinition);
 for(CommandChecker checker : commandContext.getProcessEngineConfiguration().getCommandCheckers()) {
  checker.checkDeleteHistoricDecisionInstance(decisionDefinition.getKey());
 }
 commandContext
  .getHistoricDecisionInstanceManager()
  .deleteHistoricDecisionInstancesByDecisionDefinitionId(decisionDefinitionId);
 return null;
}
origin: camunda/camunda-bpm-platform

@Override
public Object execute(CommandContext commandContext) {
 ensureNotNull("decisionDefinitionId", decisionDefinitionId);
 DecisionDefinitionEntity decisionDefinition = commandContext
   .getDecisionDefinitionManager()
   .findDecisionDefinitionById(decisionDefinitionId);
 ensureNotNull("No decision definition found with id: " + decisionDefinitionId, "decisionDefinition", decisionDefinition);
 for(CommandChecker checker : commandContext.getProcessEngineConfiguration().getCommandCheckers()) {
  checker.checkDeleteHistoricDecisionInstance(decisionDefinition.getKey());
 }
 commandContext
  .getHistoricDecisionInstanceManager()
  .deleteHistoricDecisionInstancesByDecisionDefinitionId(decisionDefinitionId);
 return null;
}
origin: org.camunda.bpm/camunda-engine

public void checkUpdateDecisionDefinition(DecisionDefinitionEntity decisionDefinition) {
 getAuthorizationManager().checkAuthorization(UPDATE, DECISION_DEFINITION, decisionDefinition.getKey());
}
origin: org.camunda.bpm/camunda-engine

public void checkReadDecisionDefinition(DecisionDefinitionEntity decisionDefinition) {
 getAuthorizationManager().checkAuthorization(READ, DECISION_DEFINITION, decisionDefinition.getKey());
}
origin: org.camunda.bpm/camunda-engine

@Override
public Object execute(CommandContext commandContext) {
 ensureNotNull("decisionDefinitionId", decisionDefinitionId);
 DecisionDefinitionEntity decisionDefinition = commandContext
   .getDecisionDefinitionManager()
   .findDecisionDefinitionById(decisionDefinitionId);
 ensureNotNull("No decision definition found with id: " + decisionDefinitionId, "decisionDefinition", decisionDefinition);
 for(CommandChecker checker : commandContext.getProcessEngineConfiguration().getCommandCheckers()) {
  checker.checkDeleteHistoricDecisionInstance(decisionDefinition.getKey());
 }
 commandContext
  .getHistoricDecisionInstanceManager()
  .deleteHistoricDecisionInstancesByDecisionDefinitionId(decisionDefinitionId);
 return null;
}
org.camunda.bpm.engine.impl.dmn.entity.repositoryDecisionDefinitionEntitygetKey

Popular methods of DecisionDefinitionEntity

  • getPreviousDecisionDefinitionId
  • getTenantId
  • <init>
  • ensurePreviousDecisionDefinitionIdInitialized
  • getId
  • loadDecisionDefinition
    Returns the cached version if exists; does not update the entity from the database in that case
  • resetPreviousDecisionDefinitionId
  • setCategory
  • setDecisionRequirementsDefinitionId
  • setDecisionRequirementsDefinitionKey
  • setHistoryTimeToLive
  • setVersionTag
  • setHistoryTimeToLive,
  • setVersionTag,
  • getVersion

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now