001package dk.netarkivet.common.distribute.bitrepository.action;
002
003/**
004 * Simple interface for grouping the various actions that the client can perform
005 */
006public interface ClientAction {
007
008    /**
009     * Method to perform the implemented action 
010     */
011    void performAction();
012}