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

io.narayana.lra.client.LRAParticipantData Maven / Gradle / Ivy

The newest version!
/*
   Copyright The Narayana Authors
   SPDX-License-Identifier: Apache-2.0
 */

package io.narayana.lra.client;

import jakarta.enterprise.context.RequestScoped;

@RequestScoped
public class LRAParticipantData {
    private String data;

    public String getData() {
        return data;
    }

    public void setData(String data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy