01: package com.esri.sde.sdk.client;
02:
03: public class SeInstance {
04:
05: public SeInstance(String s, int i) throws SeException {
06: }
07:
08: public String getServerName() {
09: return null;
10: }
11:
12: public SeInstanceStatus getStatus() {
13: return null;
14: }
15:
16: public SeInstanceConfiguration getConfiguration() {
17: return null;
18: }
19:
20: public class SeInstanceStatus {
21: public SeRelease getSeRelease() {
22: return null;
23: }
24:
25: public boolean isAccepting() {
26: return false;
27: }
28:
29: public boolean isBlocking() {
30: return false;
31: }
32: }
33:
34: public class SeInstanceConfiguration {
35: public boolean getReadOnlyInstance() {
36: return false;
37: }
38:
39: public String getHomePath() {
40: return null;
41: }
42:
43: public String getLogPath() {
44: return null;
45: }
46:
47: public int getStreamPoolSize() {
48: return 0;
49: }
50:
51: public int getMaxConnections() {
52: return 0;
53: }
54:
55: public int getMaxLayers() {
56: return 0;
57: }
58:
59: public int getMaxStreams() {
60: return 0;
61: }
62: }
63:
64: }
|