/* * BennuCoreAnnotationInitializer.java * * Copyright (c) 2013, Instituto Superior Técnico. All rights reserved. * * This file is part of bennu-core. * * bennu-core is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * * bennu-core is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with bennu-core. If not, see * <http://www.gnu.org/licenses/>. */ package org.fenixedu.bennu.core.annotation; import java.util.Set; import javax.servlet.ServletContainerInitializer; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.annotation.HandlesTypes; import org.fenixedu.bennu.core.bootstrap.BootstrapperRegistry; import org.fenixedu.bennu.core.bootstrap.annotations.Bootstrapper; import org.fenixedu.bennu.core.groups.ArgumentParser; import org.fenixedu.bennu.core.groups.CustomGroup; import org.fenixedu.bennu.core.groups.CustomGroupRegistry; import org.fenixedu.bennu.core.rest.JsonAwareResource; @HandlesTypes({ DefaultJsonAdapter.class, Bootstrapper.class, GroupOperator.class, GroupArgumentParser.class }) public class BennuCoreAnnotationInitializer implements ServletContainerInitializer { @Override @SuppressWarnings("unchecked") public void onStartup(Set<Class<?>> classes, ServletContext ctx) throws ServletException { if (classes != null) { for (Class<?> type : classes) { GroupOperator custom = type.getAnnotation(GroupOperator.class); if (custom != null) { CustomGroupRegistry.registerCustomGroup((Class<? extends CustomGroup>) type); } GroupArgumentParser parser = type.getAnnotation(GroupArgumentParser.class); if (parser != null) { CustomGroupRegistry.registerArgumentParser((Class<? extends ArgumentParser<?>>) type); } DefaultJsonAdapter defaultJsonAdapter = type.getAnnotation(DefaultJsonAdapter.class); if (defaultJsonAdapter != null) { JsonAwareResource.setDefault(defaultJsonAdapter.value(), type); } if (type.isAnnotationPresent(Bootstrapper.class)) { BootstrapperRegistry.register(type); } } } } }