Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/transition/Transition.java @ 196:171b6200d26d
Added a describe() action for collections - the implementation in the artifact server is currently just a stub that throws an not implemented exception.
artifacts/trunk@1426 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 08 Mar 2011 10:38:14 +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 :