1 | public class NativeSQLQueryScalarReturn implements NativeSQLQueryReturn {
↵ | | 1 | public class TypeDef implements Serializable {↵
|
|
2 | private Type type;↵ | | 2 | private ↵
|
3 | private String columnAlias;↵ | | |
|
|
4 | public NativeSQLQueryScalarReturn(String alias, Type type↵ | | 3 | String typeClass;↵
|
| | | 4 | private Properties parameters;↵
|
|
5 | ) {
↵ | | 5 | public TypeDef(String typeClass, Properties parameters) {↵
|
6 | this.type = type;
↵ | | 6 | this.typeClass = typeClass;↵
|
7 | this.columnAlias = alias;
↵ | | 7 | this.parameters = parameters;↵
|
8 | }↵ | | 8 | }↵
|
9 |
↵ | | |
|
|
10 | public String getColumnAlias() {
↵ | | 9 | public Properties getParameters() {↵
|
11 | return columnAlias;
↵ | | 10 | return parameters;↵
|
12 | }↵ | | 11 | }↵
|
13 |
↵ | | |
|
14 | public Type getType() {
↵ | | 12 | public String getTypeClass() {↵
|
15 | return type | | 13 | return typeClass
|