1 27 package org.objectweb.transaction.lib.transaction; 28 29 import org.objectweb.transaction.api.dependency.DependencyType; 30 31 41 public class DependencyTypeCausal 42 implements DependencyType 43 { 44 45 public static final int value = DependencyTypeCausal.class.getName().hashCode(); 46 47 48 public static final DependencyType type = new DependencyTypeCausal(); 49 50 53 public int getValue() { 54 return value; 55 } 56 57 60 public String toString() { 61 return "Causal Transactions Dependency Type" ; 62 } 63 } 64 | Popular Tags |