1 /*
2 * Demosys.
3 *
4 * Terms of license - http://opensource.org/licenses/apachepl.php
5 */
6 package org.demosys.web.iteration;
7 import org.demosys.web.iteration.IterationViewList;
8
9 /***
10 */
11 public interface IterationService {
12 public void newIteration(IterationView iteration)
13 throws CreateIterationException;
14
15
16 public void updateIteration(IterationView iteration)
17 throws CreateIterationException;
18
19
20 public void deleteIteration(String title) throws UnknownIterationException;
21
22
23 IterationViewList getAllIterations();
24 }
This page was automatically generated by Maven