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

    /**
     * @return Returns the assemblyName.
     */
    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");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jbi/deployer/src/main/java/org/apache/servicemix/jbi/deployer/task/UninstallSharedLibraryTask.java [29:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String name; //shared Library name to uninstall

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

    /**
     * @param name The 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");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



