Package | Description |
---|---|
com.denodo.vdb.engine.customwrapper |
Provides the base classes and mechanisms necessary to implement a Custom Wrapper.
|
Modifier and Type | Method and Description |
---|---|
CustomWrapperSchemaParameter[] |
CustomWrapperSchemaParameter.getColumns() |
CustomWrapperSchemaParameter[] |
AbstractCustomWrapper.getSchema()
Returns the schema of this wrapper.
|
CustomWrapperSchemaParameter[] |
CustomWrapperResult.getSchema()
Returns the schema of this instance of the custom wrapper.
|
CustomWrapperSchemaParameter[] |
CustomWrapper.getSchemaParameters(Map<String,String> inputValues)
Defines the schema of this Custom Wrapper.
|
CustomWrapperSchemaParameter[] |
CustomWrapperResult.CustomWrapperResultListener.onGetSchema()
Important: do not invoke this method.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractCustomWrapper.setSchema(CustomWrapperSchemaParameter[] customWrapperSchema)
Important: do not invoke this method.
|
Constructor and Description |
---|
CustomWrapperSchemaParameter(String name,
int type,
CustomWrapperSchemaParameter[] columns)
Creates a complex schema parameter with the following default properties:
not mandatory
not searchable
not updateable
not sortable
nullable
|
CustomWrapperSchemaParameter(String name,
int type,
CustomWrapperSchemaParameter[] columns,
boolean isSearchable,
int sortableStatus,
boolean isUpdateable,
boolean isNullable,
boolean isMandatory)
Creates a schema parameter without any default property.
|
CustomWrapperSchemaParameter(String name,
int type,
Integer typeSize,
String typeName,
Integer typeRadix,
Integer typeDecimals,
Map<String,String> extraProperties,
CustomWrapperSchemaParameter[] columns)
Creates a complex schema parameter with the following default properties:
not mandatory
not searchable
not updateable
not sortable
nullable
properties
|
CustomWrapperSchemaParameter(String name,
int type,
Integer typeSize,
String typeName,
Integer typeRadix,
Integer typeDecimals,
Map<String,String> extraProperties,
CustomWrapperSchemaParameter[] columns,
boolean isSearchable,
int sortableStatus,
boolean isUpdateable,
boolean isNullable,
boolean isMandatory)
Creates a schema parameter without any default property.
|
Copyright © 2024 Denodo Technologies. All rights reserved.