Package | Description |
---|---|
oracle.jdeveloper.audit.analyzer |
The base classes for writing analyzers.
|
oracle.jdeveloper.audit.project | |
oracle.jdeveloper.audit.service |
The API classes for invoking Audit programatically, and a few Audit common
API classes.
|
oracle.jdeveloper.audit.transform |
The base classes for defining transformations on the Audit object
model.
|
oracle.jdevimpl.audit.core | |
oracle.jdevimpl.audit.log |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
Rule.htmlMessage(Violation violation)
Gets the formatted HTML violation message for a violation of this rule
using the message template specified by the definition.
|
java.lang.String |
Rule.message(Violation violation)
Gets the formatted plain text violation message for a violation of this
rule using the message template specified by the definition.
|
SuppressionReport |
AuditContext.report(SuppressionScheme scheme,
Violation issue)
Reports a suppression for the issue currently being reviewed.
|
void |
Analyzer.review(AuditContext context,
Violation issue)
Review a reported issue.
|
Modifier and Type | Method and Description |
---|---|
TransformContext |
ProjectTransformAdapter.createContext(Transform transform,
Violation violation,
Location location) |
Constructor and Description |
---|
ProjectTransformContext(TransformAdapter adapter,
Transform transform,
Violation violation,
Location location) |
Modifier and Type | Method and Description |
---|---|
Violation |
AuditModel.getViolation(java.lang.Object row)
Gets the violation represented by a row of this model, or null if the
row does not represent a violation.
|
Violation |
AuditModel.iterateViolations(java.lang.Object row,
Iteration iteration)
Iterates the violations contained by a row of this model.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<TransformAction> |
Transformer.createTransformActions(Violation violation,
TransformerListener listener,
AuditModel model)
Creates actions for the applicable transforms of a violation.
|
java.util.List<Transform> |
AuditModel.getTransformsApplied(Violation violation)
Gets the transforms applied to a violation of this model, in application
order.
|
void |
AuditListener.issueReported(Auditor auditor,
Violation issue,
int transformMask)
Reports an Auditor violation reported event.
|
void |
ViolationHelper.pack(Violation violation,
int transformMask) |
void |
ViolationHelper.pack(Violation violation,
int transformMask,
int defaultTransformIndex) |
void |
AuditModel.setTransformDone(Transform transform,
Violation violation)
Sets a transform done for a violation of this model.
|
void |
AuditModel.setTransformUndone(Transform transform,
Violation violation)
Sets a transform undone for a violation of this model.
|
boolean |
TransformerListener.transformFailed(java.lang.Throwable exception,
Violation violation,
Transform transform,
java.lang.String label)
Reports that a transform failed.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Throwable |
Transformer.applyDefaultTransforms(java.lang.String label,
java.util.Collection<? extends Violation> violations,
TransformerListener listener,
AuditModel model)
Apply the applicable default transforms of violations.
|
DefaultTransformsAction |
Transformer.createDefaultTransformsAction(java.lang.String label,
java.util.Collection<? extends Violation> violations,
TransformerListener listener,
AuditModel model)
Creates an action for the applicable default transforms of one or more
violations.
|
java.util.List<TransformAction> |
Transformer.createTransformActions(java.util.Collection<? extends Violation> violations,
Profile profile,
TransformerListener listener,
AuditModel model)
Creates actions for the applicable transforms of one or more violations.
|
java.util.List<TransformAction> |
Transformer.createTransformActions(java.util.Collection<? extends Violation> violations,
TransformerListener listener,
AuditModel model)
Creates actions for the applicable transforms of one or more violations.
|
boolean |
Transformer.hasStandardTransforms(java.util.Collection<? extends Violation> violations)
Gets whether one or more violations have standard transforms.
|
boolean |
Transformer.hasSuppressionTransforms(java.util.Collection<? extends Violation> violations,
Profile profile)
Gets whether one or more violations have suppression transforms.
|
boolean |
Transformer.hasTransforms(java.util.Collection<? extends Violation> violations,
Profile profile)
Gets whether one or more violations have transforms (either standard or
suppression).
|
Modifier and Type | Method and Description |
---|---|
Violation |
TransformContext.getViolation()
Gets the violation associated with the transform.
|
Modifier and Type | Method and Description |
---|---|
abstract TransformContext |
TransformAdapter.createContext(Transform transform,
Violation violation,
Location location)
Creates a context for a transform over a violation.
|
TransformContext |
TextTransformAdapter.createContext(Transform transform,
Violation violation,
Location location) |
TransformContext |
NullTransformAdapter.createContext(Transform transform,
Violation violation,
Location location) |
TransformContext[] |
Transform.createContexts(Violation violation)
Creates the transform contexts for this transform, or null or an empty
array if the contexts cannot be created.
|
TransformContext[] |
CompositeTransform.createContexts(Violation violation) |
Constructor and Description |
---|
NullTransformContext(NullTransformAdapter adapter,
Transform transform,
Violation violation,
Location location) |
TextTransformContext(TextTransformAdapter adapter,
Transform transform,
Violation violation,
Location location) |
TransformContext(TransformAdapter adapter,
Transform transform,
Violation violation,
Location location)
Creates a transform context for a transform to be applied to a violation.
|
Modifier and Type | Method and Description |
---|---|
Violation |
DefaultAuditModel.getViolation(java.lang.Object row) |
Violation |
DefaultAuditModel.iterateViolations(java.lang.Object row,
Iteration iteration) |
Modifier and Type | Method and Description |
---|---|
java.util.List<TransformAction> |
DefaultTransformer.createTransformActions(Violation violation,
TransformerListener listener,
AuditModel model) |
java.util.List<Transform> |
DefaultAuditModel.getTransformsApplied(Violation violation) |
void |
DefaultAuditModel.issueReported(Auditor auditor,
Violation issue,
int transformMask) |
SuppressionReport |
DefaultAuditContext.report(SuppressionScheme scheme,
Violation issue) |
void |
DefaultAuditModel.setTransformDone(Transform transform,
Violation violation) |
void |
DefaultAuditModel.setTransformUndone(Transform transform,
Violation violation) |
Modifier and Type | Method and Description |
---|---|
java.lang.Throwable |
DefaultTransformer.applyDefaultTransforms(java.lang.String label,
java.util.Collection<? extends Violation> violations,
TransformerListener listener,
AuditModel model) |
DefaultTransformsAction |
DefaultTransformer.createDefaultTransformsAction(java.lang.String label,
java.util.Collection<? extends Violation> violations,
TransformerListener listener,
AuditModel model) |
java.util.List<TransformAction> |
DefaultTransformer.createTransformActions(java.util.Collection<? extends Violation> violations,
Profile profile,
TransformerListener listener,
AuditModel model) |
java.util.List<TransformAction> |
DefaultTransformer.createTransformActions(java.util.Collection<? extends Violation> violations,
TransformerListener listener,
AuditModel model) |
boolean |
DefaultTransformer.hasStandardTransforms(java.util.Collection<? extends Violation> violations) |
boolean |
DefaultTransformer.hasSuppressionTransforms(java.util.Collection<? extends Violation> violations,
Profile profile) |
boolean |
DefaultTransformer.hasTransforms(java.util.Collection<? extends Violation> violations,
Profile profile) |
Constructor and Description |
---|
DefaultAuditTaskContext(DefaultAuditor auditor,
Analyzer analyzer,
ModelFactory factory,
java.util.concurrent.BlockingQueue<Violation> queue) |
Modifier and Type | Method and Description |
---|---|
boolean |
AuditLogPanel.transformFailed(java.lang.Throwable exception,
Violation violation,
Transform transform,
java.lang.String label) |