static String invalidAttributeFormat( String attributeName, String value, String elementPath, String formatKey) { String inputValueFormat = _formatter.getMessage(formatKey); return _formatter.format( "invalid-attribute-format", new Object[] {attributeName, value, elementPath, inputValueFormat}); }
static String dupeAttributeMapping( AttributeMappingDescriptor newDescriptor, AttributeMappingDescriptor existingDescriptor) { return _formatter.format( "dupe-attribute-mapping", newDescriptor.getAttributeName(), existingDescriptor.getLocation()); }
static String booleanAttribute(String value, String name, String path) { return _formatter.format("boolean-attribute", new Object[] {value, name, path}); }
static String unknownAttribute(String name, String path) { return _formatter.format("unknown-attribute", name, path); }
static String requiredAttribute(String name, String path, Location location) { return _formatter.format("required-attribute", name, path, location); }
static String unableToLookup(String name, Context context) { return FORMATTER.format("unable-to-lookup", name, context); }
static String unexpectedElement(String elementName, String elementPath) { return _formatter.format("unexpected-element", elementName, elementPath); }
static String errorReadingDescriptor(Resource resource, Throwable cause) { return _formatter.format("error-reading-descriptor", resource, cause); }
static String unableToInitialize(Throwable cause) { return _formatter.format("unable-to-initialize", cause); }
static String invalidElementKeyAttribute(String schemaId, Throwable cause) { return _formatter.format("invalid-element-key-attribute", schemaId, cause); }
static String duplicateSchema(String schemaId, Schema existingSchema) { return _formatter.format("duplicate-schema", schemaId, existingSchema.getLocation()); }
static String coordinatorLocked(String methodName) { return FORMATTER.format("coordinator-locked", methodName); }
static String wrongType(String name, Object object, Class expectedType) { return FORMATTER.format("wrong-type", name, object, expectedType); }
static String noObject(String name, Class expectedType) { return FORMATTER.format("no-object", name, expectedType); }
static String invalidAttributeValue(String value, String name, String path) { return _formatter.format("invalid-attribute-value", new Object[] {value, name, path}); }
static String invalidNumericValue(String value, String name, String path) { return _formatter.format("invalid-numeric-value", new Object[] {value, name, path}); }
static String extraMappings(Collection extraNames, ElementModel model) { return _formatter.format("extra-mappings", extraNames, model.getElementName()); }
static String badRuleClass(String className, Location location, Throwable cause) { return _formatter.format("bad-rule-class", className, location, cause); }
static String multipleContributionsSchemas(String configurationId, Location location) { return _formatter.format("multiple-contributions-schemas", configurationId, location); }
static String missingResource(Resource resource) { return _formatter.format("missing-resource", resource); }
static String multipleParametersSchemas(String serviceId, Location location) { return _formatter.format("multiple-parameters-schemas", serviceId, location); }
static String notModule(String elementName, Location location) { return _formatter.format("not-module", elementName, location); }
static String ejbProxyDescription(String serviceId, Class serviceInterface, String jndiName) { return FORMATTER.format( "ejb-proxy-description", serviceId, serviceInterface.getName(), jndiName); }