Package org.jboss.as.domain.controller

Examples of org.jboss.as.domain.controller.LocalHostModel


    public synchronized void start(StartContext context) throws StartException {
        final ServerInventory serverInventory = this.serverInventory.getValue();
        final HostControllerImpl controller = new HostControllerImpl(name, hostModel, configPersister, registry, serverInventory);
        serverInventory.setHostController(controller);
        controller.registerInternalOperations();
        this.proxyController = new LocalHostModel() {

            @Override
            public void startServers(DomainController domainController) {
                controller.startServers(domainController);
            }
View Full Code Here


    }

    /** {@inheritDoc} */
    @Override
    public synchronized LocalHostModel getValue() throws IllegalStateException, IllegalArgumentException {
        final LocalHostModel controller = this.proxyController;
        if(controller == null) {
            throw new IllegalArgumentException();
        }
        return controller;
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.domain.controller.LocalHostModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.