OmniSciDB
0264ff685a
MapDUser.java
Go to the documentation of this file.
1
/*
2
* Copyright 2017 MapD Technologies, Inc.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
package
com.mapd.calcite.parser;
17
22
public
class
MapDUser
{
23
private
final
String
user
;
24
private
final
String
catalog
;
25
private
final
int
mapDPort
;
26
private
final
String
session
;
27
28
public
MapDUser
(String user, String session, String catalog,
int
mapDPort) {
29
this.user =
user
;
30
this.catalog =
catalog
;
31
this.mapDPort =
mapDPort
;
32
this.session =
session
;
33
}
34
35
public
String
getDB
() {
36
return
catalog
;
37
}
38
39
public
String
getUser
() {
40
return
user
;
41
}
42
43
public
int
getMapDPort
() {
44
return
mapDPort
;
45
}
46
47
public
String
getSession
() {
48
return
session
;
49
}
50
}
com.mapd.calcite.parser.MapDUser.getMapDPort
int getMapDPort()
Definition:
MapDUser.java:43
com.mapd.calcite.parser.MapDUser.getDB
String getDB()
Definition:
MapDUser.java:35
com.mapd.calcite.parser.MapDUser.user
final String user
Definition:
MapDUser.java:23
com.mapd.calcite.parser.MapDUser
Definition:
MapDUser.java:22
com.mapd.calcite.parser.MapDUser.MapDUser
MapDUser(String user, String session, String catalog, int mapDPort)
Definition:
MapDUser.java:28
com.mapd.calcite.parser.MapDUser.session
final String session
Definition:
MapDUser.java:26
com.mapd.calcite.parser.MapDUser.getSession
String getSession()
Definition:
MapDUser.java:47
com.mapd.calcite.parser.MapDUser.mapDPort
final int mapDPort
Definition:
MapDUser.java:25
com.mapd.calcite.parser.MapDUser.catalog
final String catalog
Definition:
MapDUser.java:24
com.mapd.calcite.parser.MapDUser.getUser
String getUser()
Definition:
MapDUser.java:39
java
calcite
src
main
java
com
mapd
calcite
parser
MapDUser.java
Generated on Tue Jan 26 2021 12:24:49 for OmniSciDB by
1.8.13