org.jboss.jbossts.xts.environment.XTSEnvironmentBean Maven / Gradle / Ivy
The newest version!
/*
Copyright The Narayana Authors
SPDX-License-Identifier: Apache-2.0
*/
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();
/**
* Returns the list of XTS recovery modules to be installed at startup and removed at shutdown.
*
* @return the list of XTS recovery modules.
*/
public List getXtsInitialisations() {
return xtsInitialisations;
}
/**
* Sets the list of XTS recovery modules to be installed at startup and removed at shutdown.
*
* @param xtsInitialisations the list of XTS recovery modules.
*/
public void setXtsInitialisations(List xtsInitialisations) {
this.xtsInitialisations = xtsInitialisations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy