public interface IOdiContextualSchemaMappingFinder extends IFinder
OdiContextualSchemaMapping entity.| Modifier and Type | Method and Description |
|---|---|
java.util.Collection |
findByContext(java.lang.String pContextCode)
Finds all
OdiContextualSchemaMappings that are defined within the
given context code. |
java.util.Collection |
findByLogicalSchema(java.lang.String pLogicalSchemaName)
Finds all
OdiContextualSchemaMappings that are defined for the
given logical schema name. |
OdiContextualSchemaMapping |
findByLogicalSchema(java.lang.String pLSchemaName,
java.lang.String pCtxCode)
Finds an
OdiContextualSchemaMapping that is defined for the given
context code and logical schema name. |
java.util.Collection |
findByPhysicalSchema(java.lang.Number pPhysicalSchemaId)
Finds all
OdiContextualSchemaMappings that are defined for the
given physical schema id. |
findAll, findByGlobalId, findById, findByIds, findRepositoryEntityByIdjava.util.Collection findByLogicalSchema(java.lang.String pLogicalSchemaName)
OdiContextualSchemaMappings that are defined for the
given logical schema name.
Note that if no OdiLogicalSchema exists with the given name, this
method will return a collection with no elements. It will not fail.
pLogicalSchemaName - logical schema's nameOdiContextualSchemaMappingsjava.util.Collection findByContext(java.lang.String pContextCode)
OdiContextualSchemaMappings that are defined within the
given context code.
Note that if no OdiContext exists with the given code, this method
will return a collection with no elements. It will not fail.
pContextCode - context's codeOdiContextualSchemaMappingsOdiContextualSchemaMapping findByLogicalSchema(java.lang.String pLSchemaName, java.lang.String pCtxCode)
OdiContextualSchemaMapping that is defined for the given
context code and logical schema name. This is a convenient method to find
an OdiContextualSchemaMapping using context code and logical schema
name, in place of true ID (i.e. contextId, logicalSchemaId).
Note that if no OdiLogicalSchema exists with the given name and/or
no OdiContext exists with the given code this method will return
null. It will not fail.
pLSchemaName - logical schema's namepCtxCode - context's codeOdiContextualSchemaMapping instancejava.util.Collection findByPhysicalSchema(java.lang.Number pPhysicalSchemaId)
OdiContextualSchemaMappings that are defined for the
given physical schema id.
Note that if no OdiPhysicalSchema exists with the given id, this
method will return a collection with no elements. It will not fail.
pPhysicalSchemaId - physical schema's IDOdiContextualSchemaMappings