org.dashbuilder.Bootstrap Maven / Gradle / Ivy
/**
* Copyright (C) 2015 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.dashbuilder;
import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import org.dashbuilder.dataset.DataSetFactory;
import org.dashbuilder.dataset.DataSetManager;
import org.dashbuilder.dataset.backend.DataSetDefDeployer;
import org.dashbuilder.dataset.def.DataSetDefRegistry;
import org.slf4j.Logger;
import org.uberfire.commons.services.cdi.Startup;
/**
* Class in charge of bootstrapping the Dashbuilder core services
*/
@ApplicationScoped
@Startup
public class Bootstrap {
@Inject
protected Logger log;
@Inject
protected DataSetDefRegistry registry;
@Inject
protected DataSetDefDeployer deployer;
@PostConstruct
protected void init() {
// Force CDI managed beans to initialize.
registry.toString();
deployer.toString();
log.info("Dashbuilder initialized");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy