Package com.arjuna.ats.internal.arjuna

Source Code of com.arjuna.ats.internal.arjuna.Implementations

/*     */ package com.arjuna.ats.internal.arjuna;
/*     */
/*     */ import com.arjuna.ats.arjuna.gandiva.inventory.Inventory;
/*     */ import com.arjuna.ats.internal.arjuna.gandiva.nameservice.JNSSetup;
/*     */ import com.arjuna.ats.internal.arjuna.gandiva.nameservice.PNSSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.ActionStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.CacheStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.HashedActionStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.HashedStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.JDBCActionStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.JDBCStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.ShadowNoFileLockStoreSetup;
/*     */ import com.arjuna.ats.internal.arjuna.objectstore.ShadowingStoreSetup;
/*     */
/*     */ public class Implementations
/*     */ {
/* 105 */   private static boolean _added = false;
/*     */
/*     */   public static synchronized boolean added()
/*     */   {
/*  70 */     return _added;
/*     */   }
/*     */
/*     */   public static synchronized void initialise()
/*     */   {
/*  75 */     if (!_added)
/*     */     {
/*  77 */       Inventory.inventory().addToList(new ShadowingStoreSetup());
/*  78 */       Inventory.inventory().addToList(new ShadowNoFileLockStoreSetup());
/*  79 */       Inventory.inventory().addToList(new ActionStoreSetup());
/*  80 */       Inventory.inventory().addToList(new HashedActionStoreSetup());
/*  81 */       Inventory.inventory().addToList(new HashedStoreSetup());
/*  82 */       Inventory.inventory().addToList(new JDBCStoreSetup());
/*  83 */       Inventory.inventory().addToList(new JDBCActionStoreSetup());
/*  84 */       Inventory.inventory().addToList(new CacheStoreSetup());
/*     */
/*  86 */       Inventory.inventory().addToList(new JNSSetup());
/*  87 */       Inventory.inventory().addToList(new PNSSetup());
/*     */
/*  93 */       Inventory.inventory().addToList(new PersistenceRecordSetup());
/*  94 */       Inventory.inventory().addToList(new CadaverRecordSetup());
/*  95 */       Inventory.inventory().addToList(new DisposeRecordSetup());
/*     */
/*  97 */       _added = true;
/*     */     }
/*     */   }
/*     */
/*     */   static
/*     */   {
/* 109 */     initialise();
/*     */   }
/*     */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     com.arjuna.ats.internal.arjuna.Implementations
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of com.arjuna.ats.internal.arjuna.Implementations

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.