1 27 package org.objectweb.transaction.lib.resource; 28 29 import org.objectweb.transaction.api.resource.ResourceEvent; 30 31 37 public class ResourceEventRollback 38 implements ResourceEvent 39 { 40 41 public final static int value = 2 ; 42 43 44 public final static ResourceEvent event = new ResourceEventRollback(); 45 46 49 public int getValue() { 50 return value; 51 } 52 } 53 | Popular Tags |