Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/transition/Transition.java @ 164:268c2972d4a7
Implemented the interface method listCollections() in the artifact database.
artifacts/trunk@1389 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 03 Mar 2011 14:28:02 +0000 |
parents | 26bfff409dd3 |
children | 8c2b6cdf22ad |
line wrap: on
line source
package de.intevation.artifactdatabase.transition; import de.intevation.artifactdatabase.state.State; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public interface Transition { /** * Return the ID of the start State. */ public String getFrom(); /** * Return the ID of the target State. */ public String getTo(); /** * Set the ID of the current State. * * @param from The ID of the current state. */ public void setFrom(String from); /** * Set the ID of the target State. * * @param to The ID of the target state. */ public void setTo(String to); /** * Determines if the transition from <code>state</code> is valid. */ public boolean isValid(State state); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :