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

org.jboss.jbossts.xts.environment.XTSEnvironmentBean Maven / Gradle / Ivy

There is a newer version: 4.17.43.Final
Show newest version
package org.jboss.jbossts.xts.environment;

import com.arjuna.common.internal.util.propertyservice.ConcatenationPrefix;
import com.arjuna.common.internal.util.propertyservice.PropertyPrefix;

import java.util.ArrayList;
import java.util.List;

/**
 * bean holding the configuration proeprty settings which identify intiialisation routines
 * to be run during XTS startup and shutdown
 */

@PropertyPrefix(prefix = "org.jboss.jbossts.xts.initialisation.")
public class XTSEnvironmentBean
{
    /**
     * the list of XTS recovery modules to be installed at startup and removed at shutdown
     */
    @ConcatenationPrefix(prefix="org.jboss.jbossts.xts.initialisation.xtsInitialisation")
    private volatile List xtsInitialisations = new ArrayList();

    public List getXtsInitialisations() {
        return xtsInitialisations;
    }

    public void setXtsInitialisations(List xtsInitialisations) {
        this.xtsInitialisations = xtsInitialisations;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy