Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2016 Red Hat, 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.wildfly.arquillian.domain.container.controller;
import org.jboss.arquillian.container.test.impl.client.container.ContainerContainerController;
import org.wildfly.arquillian.domain.api.DomainContainerController;
import org.wildfly.arquillian.domain.container.controller.command.GetServerStatusCommand;
import org.wildfly.arquillian.domain.container.controller.command.Lifecycle;
import org.wildfly.arquillian.domain.container.controller.command.ServerGroupLifecycleCommand;
import org.wildfly.arquillian.domain.container.controller.command.ServerLifecycleCommand;
/**
* @author James R. Perkins
*/
public class InContainerDomainContainerController extends ContainerContainerController implements DomainContainerController {
@Override
public void reloadServers(final String containerQualifier, final String groupName) {
getCommandService().execute(new ServerGroupLifecycleCommand(containerQualifier, Lifecycle.RELOAD, groupName));
}
@Override
public void restartServers(final String containerQualifier, final String groupName) {
getCommandService().execute(new ServerGroupLifecycleCommand(containerQualifier, Lifecycle.RESTART, groupName));
}
@Override
public void resumeServers(final String containerQualifier, final String groupName) {
getCommandService().execute(new ServerGroupLifecycleCommand(containerQualifier, Lifecycle.RESUME, groupName));
}
@Override
public void startServers(final String containerQualifier, final String groupName) {
getCommandService().execute(new ServerGroupLifecycleCommand(containerQualifier, Lifecycle.START, groupName));
}
@Override
public void stopServers(final String containerQualifier, final String groupName) {
getCommandService().execute(new ServerGroupLifecycleCommand(containerQualifier, Lifecycle.STOP, groupName));
}
@Override
public void suspendServers(final String containerQualifier, final String groupName, final int timeout) {
getCommandService().execute(new ServerGroupLifecycleCommand(containerQualifier, Lifecycle.SUSPEND, groupName, timeout));
}
@Override
public void startServer(final String containerQualifier, final String hostName, final String serverName) {
getCommandService().execute(new ServerLifecycleCommand(containerQualifier, Lifecycle.START, hostName, serverName));
}
@Override
public void stopServer(final String containerQualifier, final String hostName, final String serverName) {
getCommandService().execute(new ServerLifecycleCommand(containerQualifier, Lifecycle.STOP, hostName, serverName));
}
@Override
public boolean isServerStarted(final String containerQualifier, final String hostName, final String serverName) {
return getCommandService().execute(new GetServerStatusCommand(containerQualifier, hostName, serverName));
}
@Override
public void restartServer(final String containerQualifier, final String hostName, final String serverName) {
getCommandService().execute(new ServerLifecycleCommand(containerQualifier, Lifecycle.RESTART, hostName, serverName));
}
@Override
public void resumeServer(final String containerQualifier, final String hostName, final String serverName) {
getCommandService().execute(new ServerLifecycleCommand(containerQualifier, Lifecycle.RESUME, hostName, serverName));
}
@Override
public void suspendServer(final String containerQualifier, final String hostName, final String serverName, final int timeout) {
getCommandService().execute(new ServerLifecycleCommand(containerQualifier, Lifecycle.SUSPEND, hostName, serverName, timeout));
}
}