public class CollidingBPQueryClauseBuilder
extends java.lang.Object
Instances sharing the same BO and attribute generate identical queries, enabling safe storage in maps using keys from getKey()
.
Important: The key is dynamic and might change if the BO's Id is modified, for example, after the BO is saved. This could impact the behavior of hash-based collections that rely on key immutability.
Constructor and Description |
---|
CollidingBPQueryClauseBuilder(BOProcI _proc,
SchemaI _schema)
Constructs a new `CollidingBPQueryClauseBuilder` for the given `BOProcI` and `SchemaI`.
|
CollidingBPQueryClauseBuilder(BP bp)
Constructs a new `CollidingBPQueryClauseBuilder` for the given `BP` and `SchemaI`.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBOTIdsClause(EntityI ent)
Generates a clause for retrieving BOT (Business Object Type) Ids associated with the given `EntityI`
or any of its sub-entities.
|
java.lang.String |
getClause()
Generates an OQL query clause to identify BPs colliding with the wrapped `BOProcI`.
|
java.lang.String |
getKey()
Generates a unique key for this `CollidingBPQueryClauseBuilder`.
|
public CollidingBPQueryClauseBuilder(BP bp)
bp
- The `BP` representing the modification to check for conflicts._schema
- The `SchemaI` providing schema-related meta-information for query buildingjava.lang.IllegalArgumentException
- If the `_proc` is a creation operation, as this builder doesn't handle thosepublic CollidingBPQueryClauseBuilder(BOProcI _proc, SchemaI _schema)
_proc
- The `BOProcI` representing the modification to check for conflicts._schema
- The `SchemaI` providing schema-related meta-information for query buildingjava.lang.IllegalArgumentException
- If the `_proc` is a creation operation, as this builder doesn't handle thosepublic java.lang.String getKey()
The key is formed by concatenating the Id of the BO associated with the wrapped `BOProcI` and its attribute name, separated by '@'.
public java.lang.String getClause()
Handles various scenarios including BLOB changes, scalar attributes, unidirectional and bidirectional relations.
public java.lang.String getBOTIdsClause(EntityI ent)
ent
- The `EntityI` for which to generate the BOT Ids clauseBOT.getBOTIdsList(de.ipcon.schema.EntityI)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.