Skip to content

Commit

Permalink
feat(dmn): adjust the decision result mock in rest api
Browse files Browse the repository at this point in the history
related to #CAM-6441
  • Loading branch information
saig0 committed Jul 28, 2016
1 parent 68c10f3 commit d19c78b
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import org.camunda.bpm.dmn.engine.DmnDecisionRuleResult;
import org.camunda.bpm.dmn.engine.DmnDecisionTableResult;
import org.camunda.bpm.engine.variable.value.TypedValue;

/**
* @author Philipp Ossler
Expand Down Expand Up @@ -64,5 +65,15 @@ public List<Map<String, Object>> getResultList() {
throw new UnsupportedOperationException();
}

@Override
public <T> T getSingleEntry() {
throw new UnsupportedOperationException();
}

@Override
public <T extends TypedValue> T getSingleEntryTyped() {
throw new UnsupportedOperationException();
}

}
}

0 comments on commit d19c78b

Please sign in to comment.