// ======================================================================== // Copyright (C) zeroth Project Team. All rights reserved. // GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 // http://www.gnu.org/licenses/agpl-3.0.txt // ======================================================================== package zeroth.actor.service.app.misc; import java.math.BigDecimal; import javax.ejb.Local; import zeroth.actor.service.domain.misc.IndustryClass; import zeroth.framework.enterprise.app.SimpleRepositoryApplication; import zeroth.framework.standard.shared.SimpleFilter; /** * 業種アプリケーションI/F * @author nilcy */ @Local public interface IndustryClassApplication extends SimpleRepositoryApplication<IndustryClass, BigDecimal, SimpleFilter> { }