@MessageBundle(projectCode="JBAS")
public interface MessagingMessages
Modifier and Type | Field and Description |
---|---|
static MessagingMessages |
MESSAGES
The default messages.
|
Modifier and Type | Method and Description |
---|---|
String |
altAttributeAlreadyDefined(String name)
A message indicating the alternative attribute represented by the
name parameter is already defined. |
IllegalArgumentException |
attributeDefinitionsMustMatch(String nameFound,
String nameRequired)
Creates an exception indicating that all attribute definitions must have the same XML name.
|
IllegalArgumentException |
attributeDefinitionsNotUnique(String nameFound)
Creates an exception indicating that all attribute definitions must have unique names.
|
IllegalArgumentException |
cannotBindJndiName()
Creates an exception indicating a
null or empty JNDI name cannot be bound. |
String |
cannotIncludeOperationParameters(String paramName1,
String paramName2)
A message indicating the operation cannot include the parameter represented by
paramName1 and the
parameter represented by the paramName2 parameter. |
UnsupportedOperationException |
cannotMarshalAttribute(String name)
Creates an exception indicating the attribute, represented by the
name parameter, cannot be marshalled
and to use the marshalAsElement method. |
IllegalArgumentException |
cannotUnbindJndiName()
Creates an exception indicating a
null or empty JNDI name cannot be unbound. |
String |
childResourceAlreadyExists(String type)
A message indicating a child resource of the type, represented by the
type parameter already exists. |
IllegalStateException |
connectorNotDefined(String connectorName)
Creates an exception indicating the connector is not defined.
|
DeploymentUnitProcessingException |
couldNotParseDeployment(String file,
Throwable cause) |
String |
failedToCreate(String name)
A message indicating the
name failed to get created. |
org.jboss.msc.service.StartException |
failedToFindBroadcastSocketBinding(String name)
Creates an exception indicating a failure to find the SocketBinding for the broadcast binding.
|
org.jboss.msc.service.StartException |
failedToFindConnectorSocketBinding(String name)
Creates an exception indicating a failure to find the SocketBinding for the connector.
|
org.jboss.msc.service.StartException |
failedToFindDiscoverySocketBinding(String name)
Creates an exception indicating a failure to find the SocketBinding for the discovery binding.
|
RuntimeException |
failedToShutdownServer(Throwable cause,
String server)
Creates an exception indicating a server failed to shutdown.
|
org.jboss.msc.service.StartException |
failedToStartService(Throwable cause)
Creates an exception indicating the service failed to start.
|
OperationFailedException |
hornetQServerNotInstalled(String name)
Creates an exception indicating the HornetQService for the server with the given name is either not installed
or not started.
|
XMLStreamException |
ignoringUnhandledElement(Element element,
String location)
Creates an exception indicating an unhandled element is being ignored.
|
String |
illegalElement(String illegalElement,
String element)
A message indicating an illegal element, represented by the
illegalElement parameter, cannot be used
when the element, represented by the element parameter, is used. |
String |
illegalValue(Object value,
String element)
A message indicating an illegal value, represented by the
value parameter, for the element, represented
by the element parameter. |
String |
illegalValue(Object value,
String element,
org.jboss.dmr.ModelType expectedType)
A message indicating an illegal value, represented by the
value parameter, for the element, represented
by the element parameter, as it could not be converted to the required type, represented by the
expectedType parameter. |
UnsupportedOperationException |
immutableResource()
Creates an exception indicating a resource is immutable.
|
String |
invalid(Object obj)
A message indicating the object, represented by the
obj parameter, is invalid. |
IllegalStateException |
invalidAttributeType(String name,
org.jboss.dmr.ModelType type)
Creates an exception indicating the attribute, represented by the
name parameter, has an unexpected type,
represented by the type parameter. |
String |
invalidOperationParameters(String paramName1,
String paramName2)
A message indicating the operation must include the parameter represented by
paramName1 or the parameter
represented by the paramName2 parameter. |
String |
invalidParameterValue(Object value,
String name,
Collection<?> allowedValues)
A message indicating the value, represented by the
value parameter, is invalid for the parameter,
represented by the name parameter. |
IllegalStateException |
invalidServiceState(org.jboss.msc.service.ServiceName service,
org.jboss.msc.service.ServiceController.State validState,
org.jboss.msc.service.ServiceController.State currentState)
Creates an exception indicating the service, represented by the
service parameter, is in an invalid
state. |
String |
jndiNameAlreadyRegistered(String jndiName)
A message indicating the JNDI name has already been registered.
|
IllegalStateException |
multipleChildrenFound(String element)
Creates an exception indicating multiple children, represented by the
element parameter, were found, but
not allowed. |
String |
noDestinationRegisteredForAddress(PathAddress address) |
IllegalArgumentException |
nullVar(String varName)
Creates an exception indicating the variable cannot be
null |
IllegalStateException |
operationNotValid(String operation) |
String |
parameterNotDefined(Object parameter)
A message indicating the parameter, represented by the
parameter parameter, is not defined. |
String |
required(Object obj)
A message the object, represented by the
obj parameter, is required. |
String |
required(Object obj1,
Object obj2)
A message indicating either
obj1 or obj2 is required. |
IllegalStateException |
securityDomainContextNotSet() |
String |
unknownAttribute(String name)
A message indicating there is no such attribute.
|
IllegalStateException |
unsupportedAttribute(String name)
Creates an exception indicating the read support for the attribute represented by the
name parameter was
not properly implemented. |
UnsupportedOperationException |
unsupportedElement(String name)
Creates an exception indicating that no support for the element, represented by the
name parameter, has
been implemented. |
IllegalStateException |
unsupportedOperation(String name)
Creates an exception indicating the read support for the operation represented by the
name parameter was
not properly implemented. |
UnsupportedOperationException |
unsupportedRuntimeAttribute(String name)
Creates an exception indicating the runtime handling of the attribute represented by the
name parameter
is not implemented. |
static final MessagingMessages MESSAGES
@Message(id=11630, value="Alternative attribute of (%s) is already defined.") String altAttributeAlreadyDefined(String name)
name
parameter is already defined.name
- the attribute name.@Message(id=11631, value="All attribute definitions must have the same xml name -- found %s but already had %s") IllegalArgumentException attributeDefinitionsMustMatch(String nameFound, String nameRequired)
nameFound
- the name found.nameRequired
- the name that is required.IllegalArgumentException
for the error.@Message(id=11632, value="All attribute definitions must have unique names -- already found %s") IllegalArgumentException attributeDefinitionsNotUnique(String nameFound)
nameFound
- the name found.IllegalArgumentException
for the error.@Message(id=11633, value="Cannot bind a null or empty string as jndi name") IllegalArgumentException cannotBindJndiName()
null
or empty JNDI name cannot be bound.IllegalArgumentException
for the error.@Message(id=11634, value="Operation cannot include both parameter %s and parameter %s") String cannotIncludeOperationParameters(String paramName1, String paramName2)
paramName1
and the
parameter represented by the paramName2
parameter.paramName1
- the name of the parameter.paramName2
- the name of the parameter.@Message(id=11635, value="%s cannot be marshalled as an attribute; use marshallAsElement") UnsupportedOperationException cannotMarshalAttribute(String name)
name
parameter, cannot be marshalled
and to use the marshalAsElement
method.name
- the name of the attribute.UnsupportedOperationException
for the error.@Message(id=11636, value="Cannot unbind a null or empty string as jndi name") IllegalArgumentException cannotUnbindJndiName()
null
or empty JNDI name cannot be unbound.IllegalArgumentException
for the error.@Message(id=11637, value="A child resource of type %1$s already exists; the messaging subsystem only allows a single resource of type %1$s") String childResourceAlreadyExists(String type)
type
parameter already exists.type
- the type that already exists.@Message(id=11638, value="Connector %s not defined") IllegalStateException connectorNotDefined(String connectorName)
connectorName
- the name of the connector.IllegalStateException
for the error.@Message(id=11639, value="Failed to create %s") String failedToCreate(String name)
name
failed to get created.name
- the name.@Message(id=11640, value="Failed to find SocketBinding for broadcast binding: %s") org.jboss.msc.service.StartException failedToFindBroadcastSocketBinding(String name)
name
- the name of the connector.StartException
for the error.@Message(id=11641, value="Failed to find SocketBinding for connector: %s") org.jboss.msc.service.StartException failedToFindConnectorSocketBinding(String name)
name
- the name of the connector.StartException
for the error.@Message(id=11642, value="Failed to find SocketBinding for discovery binding: %s") org.jboss.msc.service.StartException failedToFindDiscoverySocketBinding(String name)
name
- the name of the connector.StartException
for the error.@Message(id=11643, value="Failed to shutdown %s server") RuntimeException failedToShutdownServer(@Cause Throwable cause, String server)
cause
- the cause of the error.server
- the server that failed to shutdown.RuntimeException
for the error.@Message(id=11644, value="Failed to start service") org.jboss.msc.service.StartException failedToStartService(@Cause Throwable cause)
cause
- the cause of the error.StartException
for the error.@Message(id=11645, value="Ignoring unhandled element: %s, at: %s") XMLStreamException ignoringUnhandledElement(Element element, String location)
element
- the element that's being ignored.location
- the location of the element.XMLStreamException
for the error.@Message(id=11646, value="Illegal element %s: cannot be used when %s is used") String illegalElement(String illegalElement, String element)
illegalElement
parameter, cannot be used
when the element, represented by the element
parameter, is used.illegalElement
- the illegal element.element
- the element the illegalElement
cannot be used with.@Message(id=11647, value="Illegal value %s for element %s") String illegalValue(Object value, String element)
value
parameter, for the element, represented
by the element
parameter.value
- the illegal value.element
- the element.@Message(id=-1, value="Illegal value %s for element %s as it could not be converted to required type %s") String illegalValue(Object value, String element, org.jboss.dmr.ModelType expectedType)
value
parameter, for the element, represented
by the element
parameter, as it could not be converted to the required type, represented by the
expectedType
parameter.value
- the illegal value.element
- the element.expectedType
- the required type.@Message(id=11648, value="Resource is immutable") UnsupportedOperationException immutableResource()
UnsupportedOperationException
for the error.@Message(id=11649, value="%s is invalid") String invalid(Object obj)
obj
parameter, is invalid.obj
- the invalid object.@Message(id=11650, value="Attribute %s has unexpected type %s") IllegalStateException invalidAttributeType(String name, org.jboss.dmr.ModelType type)
name
parameter, has an unexpected type,
represented by the type
parameter.name
- the name of the attribute.type
- the type of the attribute.IllegalStateException
for the error.@Message(id=11651, value="Operation must include parameter %s or parameter %s") String invalidOperationParameters(String paramName1, String paramName2)
paramName1
or the parameter
represented by the paramName2
parameter.paramName1
- the name of the parameter.paramName2
- the name of the parameter.@Message(id=11652, value="%s is an invalid value for parameter %s. Values must be one of: %s") String invalidParameterValue(Object value, String name, Collection<?> allowedValues)
value
parameter, is invalid for the parameter,
represented by the name
parameter. The value must must be one of the values defined in the
allowedValues
parameter.value
- the invalid value.name
- the name of the parameter.allowedValues
- the values that are allowed.@Message(id=11653, value="Service %s is not in state %s, it is in state %s") IllegalStateException invalidServiceState(org.jboss.msc.service.ServiceName service, org.jboss.msc.service.ServiceController.State validState, org.jboss.msc.service.ServiceController.State currentState)
service
parameter, is in an invalid
state.service
- the service.validState
- the valid state.currentState
- the current state of the service.IllegalStateException
for the error.@Message(id=11654, value="JNDI name %s is already registered") String jndiNameAlreadyRegistered(String jndiName)
jndiName
- the JNDI name.@Message(id=11655, value="Multiple %s children found; only one is allowed") IllegalStateException multipleChildrenFound(String element)
element
parameter, were found, but
not allowed.element
- the elementIllegalStateException
for the error.@Message(id=11656, value="%s is required") String required(Object obj)
obj
parameter, is required.obj
- the object that is required.@Message(id=11657, value="Either %s or %s is required") String required(Object obj1, Object obj2)
obj1
or obj2
is required.obj1
- the first option.obj2
- the second option.@Message(id=11658, value="%s is null") IllegalArgumentException nullVar(String varName)
null
varName
- the variable name.IllegalArgumentException
for the error.@Message(id=11659, value="Parameter not defined: %s") String parameterNotDefined(Object parameter)
parameter
parameter, is not defined.parameter
- the parameter.@Message(id=11660, value="No such attribute (%s)") String unknownAttribute(String name)
name
- the name of the attribute.@Message(id=11661, value="Read support for attribute %s was not properly implemented") IllegalStateException unsupportedAttribute(String name)
name
parameter was
not properly implemented.name
- the name of the attribute.IllegalStateException
for the error.@Message(id=11662, value="Implement support for element %s") UnsupportedOperationException unsupportedElement(String name)
name
parameter, has
been implemented.name
- the name of the element.UnsupportedOperationException
for the error.@Message(id=11663, value="Support for operation %s was not properly implemented") IllegalStateException unsupportedOperation(String name)
name
parameter was
not properly implemented.name
- the operation name.IllegalStateException
for the error.@Message(id=11664, value="Runtime handling for %s is not implemented") UnsupportedOperationException unsupportedRuntimeAttribute(String name)
name
parameter
is not implemented.name
- the name of the attribute.UnsupportedOperationException
for the error.@Message(id=11665, value="No HornetQ Server is available under name %s") OperationFailedException hornetQServerNotInstalled(String name)
name
- the name of the Hornet Q server.OperationFailedException
for the error.@Message(id=11666, value="Could not parse file %s") DeploymentUnitProcessingException couldNotParseDeployment(String file, @Cause Throwable cause)
@Message(id=11667, value="Handler cannot handle operation %s") IllegalStateException operationNotValid(String operation)
@Message(id=11668, value="No message destination registered at address %s") String noDestinationRegisteredForAddress(PathAddress address)
@Message(id=11669, value="SecurityDomainContext has not been set") IllegalStateException securityDomainContextNotSet()
Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.