Uses of Class
com.onwbp.base.text.Severity
-
Packages that use Severity Package Description com.onwbp.adaptation Provides core classes and interfaces for accessing datasets, tables, and their records.com.onwbp.base.text Provides classes for creating user messages and nomenclatures.com.orchestranetworks.schema.dynamic A public API for defining a dynamic schema.com.orchestranetworks.schema.info Provides interfaces for accessing schema node facet.com.orchestranetworks.service Provides classes and interfaces for implementing specific services and access rules on EBX®. -
-
Uses of Severity in com.onwbp.adaptation
Methods in com.onwbp.adaptation with parameters of type Severity Modifier and Type Method Description abstract DataspaceValidationReport
AdaptationHome. getValidationReport(Severity minimalSeverity)
Returns all validation reports for datasets in thisAdaptationHome
that have at least one validation item of the specified severity or higher.abstract Map<AdaptationName,ValidationReport>
AdaptationHome. getValidationReportsMap(Severity minimalSeverity)
Deprecated.Replaced byAdaptationHome.getValidationReport(Severity)
. -
Uses of Severity in com.onwbp.base.text
Fields in com.onwbp.base.text declared as Severity Modifier and Type Field Description static Severity
Severity. ERROR
Specifies an error.static Severity
Severity. FATAL
Specifies a "fatal" error, the highest severity.static Severity
Severity. INFO
Specifies an information message, the lowest severity.static Severity
Severity. WARNING
Specifies a warning.Methods in com.onwbp.base.text that return Severity Modifier and Type Method Description Severity
UserMessage. getSeverity()
static Severity
Severity. parseFlag(String aFlag)
Returns the severity instance corresponding to the flag specified.static Severity
Severity. parseLabel(String aLabel)
Returns the severity instance that corresponds with the label specified.Methods in com.onwbp.base.text that return types with arguments of type Severity Modifier and Type Method Description static Map<Severity,UserMessage>
Severity. getAllSeveritiesWithLabel()
Returns a map from the available severities to their corresponding user message.Methods in com.onwbp.base.text with parameters of type Severity Modifier and Type Method Description boolean
Severity. isEqualOrMoreSevereThan(Severity anotherSeverity)
Returnstrue
if this severity level is equal to or higher than the one specified.void
UserMessage. setSeverity(Severity severity)
Sets the severity of this message.Constructors in com.onwbp.base.text with parameters of type Severity Constructor Description UserMessageRef(Severity severity, String aMessageKey, String bundleBaseName, Object[] params)
UserMessageRef(Severity severity, String aMessageKey, String bundleBaseName, Object[] params, ClassLoader bundleClassLoader)
UserMessageString(Severity severity, String aMessage, Object[] params, String anInternalId, Throwable anException)
UserMessageString(Severity severity, String aMessage, Object[] params, Throwable anException)
-
Uses of Severity in com.orchestranetworks.schema.dynamic
Methods in com.orchestranetworks.schema.dynamic with parameters of type Severity Modifier and Type Method Description void
BeanFacetTableRef. setFilterPredicate(String aPredicate, Severity aSeverity, String aMessage)
Sets an XPath predicate filter.void
BeanFacet. setMessage(Severity aSeverity, String aMessage)
Sets the message to display when the constraint check fails. -
Uses of Severity in com.orchestranetworks.schema.info
Methods in com.orchestranetworks.schema.info that return Severity Modifier and Type Method Description Severity
SchemaFacetValidationMessage. getSeverity()
Returns theseverity
of the validation message. -
Uses of Severity in com.orchestranetworks.service
Methods in com.orchestranetworks.service that return Severity Modifier and Type Method Description Severity
ValidationReportItem. getSeverity()
Returns the severity of this item, which is the severity of the user message.Methods in com.orchestranetworks.service with parameters of type Severity Modifier and Type Method Description int
ValidationReport. countItemsOfSeverity(Severity aSeverity)
Returns the number of validation items of the specified severity.ValidationReportItemIterator
ValidationReport. getItemsOfSeverity(Severity aSeverity)
Returns the validation items of the specified severity.ValidationReportItemIterator
ValidationReport. getItemsOfSeverityOrMore(Severity aSeverity)
Returns the validation items of the specified severity and higher (more severe).boolean
ValidationReport. hasItemsOfSeverity(Severity aSeverity)
Returnstrue
if this report has validation items of the specified severity.boolean
ValidationReport. hasItemsOfSeverityOrMore(Severity aSeverity)
Returnstrue
if this report has validation items of the specified severity or higher (more severe).boolean
ValidationReport. hasTooManyItemsOfSeverity(Severity aSeverity)
Deprecated.Since 6.0boolean
ValidationReportItem. isOfSeverity(Severity aSeverity)
Returnstrue
if this item is of the specified severity.
-