1 package org.jacorb.transaction; 2 3 4 5 42 43 44 45 46 47 import org.omg.CosTransactions.*; 48 49 50 51 public class ResourceImpl implements ResourceOperations { 52 53 54 55 public Vote prepare() throws HeuristicMixed, HeuristicHazard{ 56 57 throw new org.omg.CORBA.NO_IMPLEMENT (); 58 59 } 60 61 62 63 public void rollback() throws HeuristicCommit, 64 65 HeuristicMixed, HeuristicHazard{ 66 67 throw new org.omg.CORBA.NO_IMPLEMENT (); 68 69 } 70 71 72 73 public void commit() throws NotPrepared, HeuristicRollback, 74 75 HeuristicMixed, HeuristicHazard{ 76 77 throw new org.omg.CORBA.NO_IMPLEMENT (); 78 79 } 80 81 82 83 public void commit_one_phase() throws HeuristicHazard{ 84 85 throw new org.omg.CORBA.NO_IMPLEMENT (); 86 87 } 88 89 90 91 public void forget(){ 92 93 throw new org.omg.CORBA.NO_IMPLEMENT (); 94 95 } 96 97 98 99 } 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | Popular Tags |