1 23 24 package javax.resource.cci; 25 26 import javax.resource.ResourceException ; 27 28 46 47 public interface ResourceAdapterMetaData { 48 49 53 public 54 String getAdapterVersion(); 55 56 62 public 63 String getAdapterVendorName(); 64 65 69 public 70 String getAdapterName(); 71 72 77 public 78 String getAdapterShortDescription(); 79 80 87 public 88 String getSpecVersion(); 89 90 104 public 105 String [] getInteractionSpecsSupported(); 106 107 108 116 public 117 boolean supportsExecuteWithInputAndOutputRecord(); 118 119 120 128 public 129 boolean supportsExecuteWithInputRecordOnly(); 130 131 132 141 public 142 boolean supportsLocalTransactionDemarcation(); 143 } 144 | Popular Tags |