Statistics
| Revision:

root / branches / v10 / extensions / extSDE / src / com / iver / cit / gvsig / fmap / drivers / sde / SDELayerDefinition.java @ 10942

History | View | Annotate | Download (2.15 KB)

1
package com.iver.cit.gvsig.fmap.drivers.sde;
2

    
3
import com.iver.cit.gvsig.fmap.drivers.DBLayerDefinition;
4

    
5

    
6
/**
7
 * SDE Layer definition.
8
 * @author  Vicente Caballero Navarro
9
 */
10
public class SDELayerDefinition extends DBLayerDefinition {
11
    /**
12
         * @uml.property  name="host"
13
         */
14
    private String host;
15
    /**
16
         * @uml.property  name="port"
17
         */
18
    private String port;
19
    /**
20
         * @uml.property  name="schema"
21
         */
22
    private String schema;
23
    /**
24
         * @uml.property  name="user"
25
         */
26
    private String user;
27
    private String pwd;
28
    /**
29
         * @uml.property  name="connectionName"
30
         */
31
    private String connectionName;
32

    
33
    public SDELayerDefinition() {
34
        System.out.println("SDE Layer Definition");
35
    }
36

    
37
    /**
38
         * @param dbHost
39
         * @uml.property  name="host"
40
         */
41
    public void setHost(String dbHost) {
42
        this.host = dbHost;
43
    }
44

    
45
    /**
46
         * @return
47
         * @uml.property  name="host"
48
         */
49
    public String getHost() {
50
        return host;
51
    }
52

    
53
    /**
54
         * @param port
55
         * @uml.property  name="port"
56
         */
57
    public void setPort(String port) {
58
        this.port = port;
59
    }
60

    
61
    /**
62
         * @return
63
         * @uml.property  name="port"
64
         */
65
    public String getPort() {
66
        return port;
67
    }
68

    
69
    /**
70
         * @param schema
71
         * @uml.property  name="schema"
72
         */
73
    public void setSchema(String schema) {
74
        this.schema = schema;
75
    }
76

    
77
    /**
78
         * @return
79
         * @uml.property  name="schema"
80
         */
81
    public String getSchema() {
82
        return schema;
83
    }
84

    
85
    /**
86
         * @param user
87
         * @uml.property  name="user"
88
         */
89
    public void setUser(String user) {
90
        this.user = user;
91
    }
92

    
93
    public void setPassword(String pwd) {
94
        this.pwd = pwd;
95
    }
96

    
97
    public String getPassword() {
98
        return pwd;
99
    }
100

    
101
    /**
102
         * @return
103
         * @uml.property  name="user"
104
         */
105
    public String getUser() {
106
        return user;
107
    }
108

    
109
    /**
110
         * @param connectionName
111
         * @uml.property  name="connectionName"
112
         */
113
    public void setConnectionName(String connectionName) {
114
        this.connectionName = connectionName;
115
    }
116

    
117
    /**
118
         * @return
119
         * @uml.property  name="connectionName"
120
         */
121
    public String getConnectionName() {
122
        return connectionName;
123
    }
124
}