All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ow2.jonas.ant.cluster.DbmCluster Maven / Gradle / Ivy

/**
 * JOnAS: Java(TM) Open Application Server
 * Copyright (C) 2005 Bull S.A.
 * Contact: [email protected]
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 * USA
 *
 * Initial developer: Benoit Pelletier
 * --------------------------------------------------------------------------
 * $Id: DbmCluster.java 15428 2008-10-07 11:20:29Z sauthieg $
 * --------------------------------------------------------------------------
 */

package org.ow2.jonas.ant.cluster;

import java.io.File;

import org.ow2.jonas.ant.jonasbase.Dbm;

/**
 *  Define DbmCluster task
 * @author Benoit Pelletier
 */
public class DbmCluster extends ClusterTasks {

    /**
     * Info for the logger
     */
    private static final String INFO = "[DbmCluster] ";

    /**
     * dataSource
     */
    private String dataSources = null;

    /**
     * Default constructor
     */
    public DbmCluster() {
        super();
    }

    /**
     * Set the dataSources for the Dbm service
     * @param dataSources the dataSources for the Dbm service
     */
    public void setdataSources(String dataSources) {
            this.dataSources = dataSources;
    }

    /**
     * Generates the DbmCluster tasks for each JOnAS's instances
     */
    public void generatesTasks() {

        int portInd = 0;

        for (int i = getDestDirSuffixIndFirst(); i <= getDestDirSuffixIndLast(); i++) {

            String destDir = getDestDir(getDestDirPrefix(), i);
            log(INFO + "tasks generation for " + destDir);
            // creation of the DbmCluster task
            Dbm dbm = new Dbm();

            dbm.setdataSources(dataSources);
            dbm.setDestDir(new File(destDir));

            addTask(dbm);

            portInd++;

        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy