1 27 package org.objectweb.transaction.lib.transaction; 28 29 import org.objectweb.transaction.api.dependency.DependencyType; 30 31 39 public class DependencyTypeOrder 40 implements DependencyType 41 { 42 43 public static final int value = DependencyTypeOrder.class.getName().hashCode(); 44 45 46 public static final DependencyType type = new DependencyTypeOrder(); 47 48 51 public int getValue() { 52 return value; 53 } 54 55 58 public String toString() { 59 return "Ordered Transactions Dependency Type" ; 60 } 61 } 62 | Popular Tags |