com.ibm.websphere.ant.tasks
Class StopApplication
- java.lang.Object
-
- org.apache.tools.ant.ProjectComponent
-
- org.apache.tools.ant.Task
-
- com.ibm.websphere.ant.tasks.WsAdmin
-
- com.ibm.websphere.ant.tasks.StopApplication
-
- All Implemented Interfaces:
- java.lang.Cloneable
public class StopApplication extends WsAdmin
The wsStopApp task enables you to stop an existing or newly installed application on a WebSphere Server or in a WebSphere Cell. This task is a subclass of the wsadmin task and shares many of the same attributes. This task is a wrapper for the ApplicationManager.stopApplication() command of the wsadmin tool. Refer to the wsadmin documentation for information on this operation. The structure of the wsStopApp task is shown below: The wasHome attribute is optional and contains the location of the WebSphere Installation Directory.
The server attribute is optional and specifies the name of the server containing the application you wish to start
The node attribute is optional and specifies the name of the node containing the application you wish to start
The application attribute is required and specifies the name of the application you wish to stop
The properties attribute is optional and it contains a java properties file containing attributes to set in the JVM System properties
The profile attribute is optional and it contains a script file to be executed before the main command or file
The profileName attribute is optional and it contains the name of the server profile to be used
The conntype attribute is optional and it specifies the type of connection to be used. The Default type is SOAP. The valid values are SOAP, RMI, JMS, and NONE. NONE means that no server connection is made. The host attribute is optional and only specified if the conntype is specified. It contains the hostname of the machine to connect to
The port attribute is optional and only specified if the conntype is specified. It contains the port on the host to connect to
The user attribute is optional and contains the user ID to authenticate with
The password attribute is optional and contains the password to authenticate with
The failonerror attribute is optional. When this is specified the build will fail if any exception is thrown. The default is false.
To use this task, add the following to your Ant build.xml
-
-
Constructor Summary
Constructors Constructor and Description StopApplication()Constructor for StopApplication.
-
Method Summary
Methods Modifier and Type Method and Description voidexecute()voidsetApplication(java.lang.String application)Sets the ear.voidsetCommand(java.lang.String command)Disabled in this subclassvoidsetLang(java.lang.String lang)Disabled in this subclassvoidsetNode(java.lang.String node)Sets the name of the node containing the application.voidsetScript(java.lang.String script)Disabled in this subclassvoidsetServer(java.lang.String server)Sets the name of the server containing the application.-
Methods inherited from class com.ibm.websphere.ant.tasks.WsAdmin
createArg, createJvmarg, isDebug, setConntype, setDebug, setFailonerror, setFileEncoding, setHost, setJvmMaxMemory, setPassword, setPort, setProfile, setProfileName, setProperties, setUser, setWasHome
-
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
-
-
-
-
Method Detail
-
setCommand
public void setCommand(java.lang.String command)
Disabled in this subclass- Overrides:
setCommandin classWsAdmin- Parameters:
command- The command to set
-
setLang
public void setLang(java.lang.String lang)
Disabled in this subclass
-
setScript
public void setScript(java.lang.String script)
Disabled in this subclass
-
setApplication
public void setApplication(java.lang.String application)
Sets the ear.- Parameters:
ear- The ear to set
-
setServer
public void setServer(java.lang.String server)
Sets the name of the server containing the application.- Parameters:
server- The name of the server
-
setNode
public void setNode(java.lang.String node)
Sets the name of the node containing the application.- Parameters:
node- The name of the node
-
-