public interface BOProcHolderI
Classes implementing this interface are capable of storing and managing BOProcI instances, which represent changes to business objects. They also provide methods to access and analyze these changes, such as dumping the procedures to a logger, converting them to a human-readable string, and checking if any changes have been recorded.
Examples of BOProcHolderI implementations include:
BOProcI
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
$0 |
Modifier and Type | Method and Description |
---|---|
void |
dumpProcs(org.apache.log4j.Logger log)
Dumps the procedures in a human-readable format to the specified logger.
|
int |
getDeletedBOCount()
Returns the number of BOs deleted within this holder.
|
int |
getNewBOCount()
Returns the number of new BOs created within this holder.
|
boolean |
hasProcs()
Checks if this holder has recorded any changes (procedures).
|
java.lang.String |
newBOsToString(boolean html)
Converts the new BOs to a human-readable string representation.
|
default java.lang.String |
procsToString(boolean html)
Converts the procedures to a human-readable string representation.
|
default java.lang.String |
procsToString(boolean html,
BO onlyThisBO)
Converts the procedures affecting a specific BO to a human-readable string representation.
|
default java.lang.String |
procsToString(boolean html,
boolean skipBackProcs)
Converts the procedures to a human-readable string representation.
|
java.lang.String |
procsToString(boolean html,
boolean skipBackProcs,
BO onlyThisBO)
Converts the procedures affecting a specific BO to a human-readable string representation.
|
static final java.lang.String $0
void dumpProcs(org.apache.log4j.Logger log)
log
- The logger to which the procedures should be dumped.default java.lang.String procsToString(boolean html)
html
- Whether to format the output as HTML or plain text.default java.lang.String procsToString(boolean html, boolean skipBackProcs)
html
- Whether to format the output as HTML or plain text.skipBackProcs
- Whether to skip "redundant" procs setting only back relations from the output.default java.lang.String procsToString(boolean html, BO onlyThisBO)
html
- Whether to format the output as HTML or plain text.onlyThisBO
- If not null, only BOProcs affecting this BO will be included in the output.java.lang.String procsToString(boolean html, boolean skipBackProcs, BO onlyThisBO)
html
- Whether to format the output as HTML or plain text.skipBackProcs
- Whether to skip "redundant" procs setting only back relations from the output.onlyThisBO
- If not null, only BOProcs affecting this BO will be included in the output.int getNewBOCount()
int getDeletedBOCount()
java.lang.String newBOsToString(boolean html)
html
- Whether to format the output as HTML or plain text.boolean hasProcs()
true
if at least one change has been recorded, false
otherwise.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.