
com.atomikos.tcc.rest.ParticipantLinkFactory Maven / Gradle / Ivy
/**
* Copyright (C) 2000-2016 Atomikos
*
* LICENSE CONDITIONS
*
* See http://www.atomikos.com/Main/WhichLicenseApplies for details.
*/
package com.atomikos.tcc.rest;
/**
* Customized factory to make it easy to generate ParticipantLink instances.
*
*/
public class ParticipantLinkFactory {
public static ParticipantLink createInstance(String uri, String expires) {
ParticipantLink pl = new ParticipantLink(uri,expires);
return pl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy