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

net.sf.ehcache.transaction.XidTransactionIDSerializedForm Maven / Gradle / Ivy

/**
 *  Copyright Terracotta, Inc.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package net.sf.ehcache.transaction;

import net.sf.ehcache.CacheManager;
import net.sf.ehcache.transaction.xa.SerializableXid;

import javax.transaction.xa.Xid;
import java.io.Serializable;

/**
 * A replacement serialized form for XID transaction IDs. It can be used by transaction ID factories
 * to create XID-based IDs that serialize to this form (using writeReplace()) if they don't want or
 * cannot provide directly serializable IDs.
 * 

* During deserialization, objects of this class will be replaced by the result of the * CacheManager.restoreXidTransactionID() call. * * @author Ludovic Orban */ public final class XidTransactionIDSerializedForm implements Serializable { private final String cacheManagerName; private final String cacheName; private final String ownerID; private final Xid xid; /** * Constructor * * @param cacheManagerName the name of the cache manager which contains the factory * that created the original XidTransactionID * @param cacheName the name of the cache for this id * @param xid the XidTransactionID's XID */ public XidTransactionIDSerializedForm(String cacheManagerName, String cacheName, String ownerID, Xid xid) { this.cacheManagerName = cacheManagerName; this.cacheName = cacheName; this.ownerID = ownerID; this.xid = new SerializableXid(xid); } /** * Get the name of the cache manager which contains the factory that created the * original XidTransactionID * * @return the cache manager name */ public String getCacheManagerName() { return cacheManagerName; } /** * Get the name of the cache which this original XidTransactionID is for. * * @return the cache name */ public String getCacheName() { return cacheName; } /** * Get the original XidTransactionID's owner id * * @return the original XidTransactionID's owner id */ public String getOwnerID() { return ownerID; } /** * Get the original XidTransactionID's XID * * @return the original XidTransactionID's XID */ public Xid getXid() { return xid; } private Object readResolve() { CacheManager cacheManager = CacheManager.getCacheManager(cacheManagerName); if (cacheManager == null) { throw new TransactionException("unable to restore XID transaction ID from " + cacheManagerName); } return cacheManager.getOrCreateTransactionIDFactory().restoreXidTransactionID(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy