Skip to content
This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
ktoso edited this page May 7, 2011 · 1 revision

The IceBox

The IceBox is a place where you can keep tasks, to later move them to the board and start working on them.

Create and move to board

IceBox iceBox = janbanery.iceBox();

Task movedTask = iceBox.create(story).moveToBoard().get();

Delete a Task in the IceBox

IceBox iceBox = janbanery.iceBox();

Task task = iceBox.create(story).get();
iceBox.delete(task);
Clone this wiki locally