// ======================================================================== // 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.domain.misc; import zeroth.framework.standard.shared.AbstractFactory; /** * Industry classification factory. * @author nilcy */ public class IndustryClassFactory extends AbstractFactory<IndustryClass> { /** コンストラクタ */ public IndustryClassFactory() { super(); } }