package org.pegadi.server; import org.pegadi.model.ArticleType; import java.util.List; /** * User: jan-preben * Date: Sep 21, 2010 */ public interface ArticleTypeServer { /** * Returns the articletype with the given ID * * @param ID the ID of the articletype * @return an articletype, or null if no articletype found */ public ArticleType getArticleType(int ID); /** * Returns all available article types. * * @return a List of <code>ArticleType</code>s. */ public List<ArticleType> getArticleTypes(); }