BATCH-1065: Added check to ensure that a transition from an EndState does not have a "pattern" associated. EndState transitions must always be universal.

This commit is contained in:
dhgarrette
2009-02-13 06:37:08 +00:00
parent 73ed78da31
commit f562b01d6e
7 changed files with 13 additions and 8 deletions

View File

@@ -50,6 +50,6 @@ public class StateSupport extends AbstractState {
return this.status;
}
public void validate(String nextState) {
public void validate(String pattern, String nextState) {
}
}