com.arjuna.mw.wscf.model.sagas.status.Closed Maven / Gradle / Ivy
The newest version!
/*
Copyright The Narayana Authors
SPDX-License-Identifier: Apache-2.0
*/
package com.arjuna.mw.wscf.model.sagas.status;
import com.arjuna.mw.wsas.status.Status;
/**
* The coordinator has confirmed and completed the protocol.
*
* @author Mark Little ([email protected])
* @version $Id: Closed.java,v 1.2 2004/03/15 13:25:05 nmcl Exp $
* @since 1.0.
*/
public class Closed implements Status
{
public static Closed instance ()
{
return _instance;
}
public String toString ()
{
return "org.w3c.wscf.sagas.status.Closed";
}
private Closed ()
{
}
private static final Closed _instance = new Closed();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy