jbi/deployer/src/main/java/org/apache/servicemix/jbi/deployer/task/ShutDownComponentTask.java [29:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String name;

    /**
     * @return Returns the componentName.
     */
    public String getName() {
        return name;
    }

    /**
     * @param name The component name to set.
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * execute the task
     *
     * @throws BuildException
     */
    public void doExecute(AdminCommandsService acs) throws Exception {
        if (name == null) {
            throw new BuildException("null componentName");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jbi/deployer/src/main/java/org/apache/servicemix/jbi/deployer/task/StopServiceAssemblyTask.java [29:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String name; //assembly name to stop.

    /**
     * @return Returns the assembly name.
     */
    public String getName() {
        return name;
    }

    /**
     * @param name The assembly name to set.
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * execute the task
     *
     * @throws BuildException
     */
    public void doExecute(AdminCommandsService acs) throws Exception {
        if (name == null) {
            throw new BuildException("null componentName");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



