1 23 24 package javax.resource.cci; 25 26 27 import javax.resource.ResourceException ; 28 29 45 46 public interface ResultSetInfo { 47 48 57 public 58 boolean updatesAreDetected(int type) throws ResourceException ; 59 60 69 public 70 boolean insertsAreDetected(int type) throws ResourceException ; 71 72 82 public 83 boolean deletesAreDetected(int type) throws ResourceException ; 84 85 92 public 93 boolean supportsResultSetType(int type) throws ResourceException ; 94 95 104 public 105 boolean supportsResultTypeConcurrency(int type, 106 int concurrency) 107 throws ResourceException ; 108 109 110 117 public 118 boolean othersUpdatesAreVisible(int type) throws ResourceException ; 119 120 128 public 129 boolean othersDeletesAreVisible(int type) throws ResourceException ; 130 131 139 public 140 boolean othersInsertsAreVisible(int type) throws ResourceException ; 141 142 143 150 public 151 boolean ownUpdatesAreVisible(int type) throws ResourceException ; 152 153 160 public 161 boolean ownInsertsAreVisible(int type) throws ResourceException ; 162 163 170 public 171 boolean ownDeletesAreVisible(int type) throws ResourceException ; 172 173 } 174 | Popular Tags |