1 23 24 28 29 51 package com.sun.jts.CosTransactions; 52 53 import org.omg.CosTransactions.*; 54 55 68 69 76 public abstract class StaticResource { 77 78 93 public abstract void startAssociation(Coordinator coord, boolean begin); 94 95 110 public abstract void endAssociation(Coordinator coord, boolean complete); 111 112 124 protected void register() { 125 CurrentTransaction.registerStatic(this); 126 } 127 } 128 | Popular Tags |