com.orctom.was.service.IWebSphereService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of was-util Show documentation
Show all versions of was-util Show documentation
Common Utils that talks to WebSphere used by was-maven-plugin and was-gradle-plugin
package com.orctom.was.service;
/**
* Created by CH on 3/11/14.
*/
public interface IWebSphereService {
void restartServer();
void installApplication();
void uninstallApplication();
void startApplication();
void stopApplication();
/**
* uninstall-if-exists => install => restart
*/
void deploy();
}