01: package com.esri.sde.sdk.client;
02:
03: public class SeConnection {
04:
05: public static/* GEOT-947 final*/int SE_UNPROTECTED_POLICY = 0;
06:
07: public SeConnection(String a, int i, String b, String c, String d) {
08: }
09:
10: public void commitTransaction() throws SeException {
11: }
12:
13: public void rollbackTransaction() throws SeException {
14: }
15:
16: public int setTransactionAutoCommit(int i) {
17: return -1;
18: }
19:
20: public void startTransaction() {
21: }
22:
23: public String getDatabaseName() throws SeException {
24: return null;
25: }
26:
27: public String getUser() throws SeException {
28: return null;
29: }
30:
31: public void close() throws SeException {
32: }
33:
34: public java.util.Vector getLayers() throws SeException {
35: return null;
36: }
37:
38: public void setConcurrency(int i) {
39: }
40:
41: public boolean isClosed() {
42: return false;
43: }
44:
45: public SeRelease getRelease() {
46: return null;
47: }
48: }
|