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

com.atomikos.tcc.rest.Transaction Maven / Gradle / Ivy

There is a newer version: 4.0.6
Show newest version
/**
 * Copyright (C) 2000-2016 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.tcc.rest;

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



public class Transaction {

    protected List participantLinks;
    
    public Transaction() {
	}
    
    public Transaction(List participantLink) {
		this.participantLinks = participantLink;
	}
	
    public List getParticipantLinks() {
        if (participantLinks == null) {
            participantLinks = new ArrayList();
        }
        return this.participantLinks;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy