@MessageBundle(projectCode="JBAS")
public interface ControllerClientMessages
Modifier and Type | Interface and Description |
---|---|
static class |
ControllerClientMessages.LeakDescription |
Modifier and Type | Field and Description |
---|---|
static ControllerClientMessages |
MESSAGES
The messages
|
Modifier and Type | Method and Description |
---|---|
IllegalStateException |
cannotAddDeploymentAction()
Creates an exception indicating after starting creation of the rollout plan no deployment actions can be added.
|
IllegalStateException |
cannotAddDeploymentActionsAfterStart()
Creates an exception indicating no deployment actions can be added after starting the creation of the rollout
plan.
|
String |
cannotConvert(String first,
String second)
A message indicating that
first cannot be converted to second . |
IllegalArgumentException |
cannotDeriveDeploymentName(URL url)
Creates an exception indicating the deployment name could not be derived from the URL.
|
IllegalArgumentException |
cannotUseDeploymentPlan()
Creates an exception indicating the
DeploymentPlan cannot be used because it was not created by this
manager. |
IOException |
channelClosed(IOException cause)
Creates an exception indicating the channel is closed.
|
ControllerClientMessages.LeakDescription |
controllerClientNotClosed()
Creates a leak description, used in the controller client to show the original allocation point creating the
client.
|
String |
domainDeploymentAlreadyExists(String name)
A message indicating a deployment with the
name is already present in the domain. |
String |
failed()
The word failed.
|
IllegalStateException |
globalRollbackNotCompatible()
Creates an exception indicating a global rollback is not compatible with a server restart.
|
IllegalStateException |
gracefulShutdownAlreadyConfigured(long timeout)
Creates an exception indicating the graceful shutdown already configured with a timeout, represented by the
timeout parameter. |
String |
incompleteDeploymentReplace(String deploymentName,
String missingGroups)
A message indicating only one version of a deployment with a given unique name can exist in the domain.
|
IllegalStateException |
invalidActionType(DeploymentAction.Type type)
Creates an exception indicating the action type, represented by the
type parameter, is invalid. |
IllegalArgumentException |
invalidAddressType()
Creates an exception indicating the address must be of type
list . |
IllegalStateException |
invalidPrecedingAction(Object type)
Creates an exception indicating the preceding action was not a
type . |
IllegalArgumentException |
invalidUri(Throwable cause,
URL url)
Creates an exception indicating the URL is not a valid URI.
|
IllegalArgumentException |
invalidValue(String name,
int value,
int minValue)
Creates an exception indicating the value is invalid and must be greater than the
minValue . |
IllegalArgumentException |
invalidValue(String name,
int value,
int minValue,
int maxValue)
Creates an exception indicating the value is invalid and must be greater than the
minValue and less than
the maxValue . |
RuntimeException |
maxDisplayUnitLength()
Creates an exception indicating that screen real estate is expensive and displayUnits must be 5 characters or
less.
|
IOException |
noActiveRequest(int batchId)
Creates an exception indicating no active request found for the batch id.
|
IllegalArgumentException |
noFailureDescription()
Creates an exception indicating the operation was successful and no failure description exists.
|
String |
noFailureDetails()
A message indicating that no failure details were provided.
|
IllegalStateException |
notConfigured(String name)
Creates an exception indicating the
name is not configured. |
IllegalArgumentException |
nullVar(String name)
Creates an exception indicating the variable, represented by the
name parameter, is null . |
IllegalStateException |
objectIsClosed(String name)
Creates an exception indicating the object is closed.
|
IllegalArgumentException |
operationNameNotFound()
Creates an exception indicating the operation name was not defined.
|
RuntimeException |
operationOutcome(String outcome)
Creates an exception with the operation outcome.
|
IllegalStateException |
operationsNotAllowed(String name)
Creates an exception indicating operations are not not allowed after content and deployment modifications.
|
RollbackCancelledException |
rollbackCancelled()
Creates an exception indicating the rollback was cancelled.
|
RollbackCancelledException |
rollbackRolledBack()
Creates an exception indicating the rollback was itself rolled back.
|
RollbackCancelledException |
rollbackTimedOut()
Creates an exception indicating the rollback timed out.
|
String |
serverDeploymentAlreadyExists(String name)
A message indicating a deployment with the
name is already present in the domain. |
IllegalStateException |
unknownActionType(Object type)
Creates an exception indicating the action type, represented by the
type parameter, is unknown. |
static final ControllerClientMessages MESSAGES
@Message(id=10620, value="Cannot add deployment actions after starting creation of a rollout plan") IllegalStateException cannotAddDeploymentAction()
IllegalStateException
for the error.@Message(id=10621, value="Cannot add deployment actions after starting creation of a rollout plan") IllegalStateException cannotAddDeploymentActionsAfterStart()
IllegalStateException
for the error.@Message(id=10622, value="Cannot convert %s to %s") String cannotConvert(String first, String second)
first
cannot be converted to second
.first
- the type that could not be converted.second
- the type attempting to be converted to.@Message(id=10623, value="Cannot derive a deployment name from %s -- use an overloaded method variant that takes a \'name\' parameter") IllegalArgumentException cannotDeriveDeploymentName(URL url)
url
- the URL to the deployment.IllegalArgumentException
for the error.@Message(id=10624, value="Cannot use a DeploymentPlan not created by this manager") IllegalArgumentException cannotUseDeploymentPlan()
DeploymentPlan
cannot be used because it was not created by this
manager.IllegalArgumentException
for the error.@Message(id=10625, value="Channel closed") IOException channelClosed(@Cause IOException cause)
IOException
for the error.@Message(id=10626, value="Deployment with name %s already present in the domain") String domainDeploymentAlreadyExists(String name)
name
is already present in the domain.name
- the name of the deployment.@Message(id=10627, value="failed") String failed()
@Message(id=10628, value="Global rollback is not compatible with a server restart") IllegalStateException globalRollbackNotCompatible()
IllegalStateException
for the error.@Message(id=10629, value="Graceful shutdown already configured with a timeout of %d ms") IllegalStateException gracefulShutdownAlreadyConfigured(long timeout)
timeout
parameter.timeout
- the already configured timeout.IllegalStateException
for the error.@Message(id=10630, value="Only one version of deployment with a given unique name can exist in the domain. The deployment plan specified that a new version of deployment %s replace an existing deployment with the same unique name, but did not apply the replacement to all server groups. Missing server groups were: %s") String incompleteDeploymentReplace(String deploymentName, String missingGroups)
deploymentName
- the deployment name.missingGroups
- the missing groups.@Message(id=10631, value="Invalid action type %s") IllegalStateException invalidActionType(DeploymentAction.Type type)
type
parameter, is invalid.type
- the invalid type.IllegalStateException
for the error.@Message(id=10632, value="Preceding action was not a %s") IllegalStateException invalidPrecedingAction(Object type)
type
.type
- the type that preceding action should be.IllegalStateException
for the error.@Message(id=10633, value="%s is not a valid URI") IllegalArgumentException invalidUri(@Cause Throwable cause, URL url)
cause
- the cause of the error.url
- the URL.IllegalArgumentException
for the error.@Message(id=10634, value="Illegal %s value %d -- must be greater than %d") IllegalArgumentException invalidValue(String name, int value, int minValue)
minValue
.name
- the name for the value.value
- the invalid value.minValue
- the minimum value allowed.IllegalArgumentException
for the error.@Message(id=10635, value="Illegal %s value %d -- must be greater than %d and less than %d") IllegalArgumentException invalidValue(String name, int value, int minValue, int maxValue)
minValue
and less than
the maxValue
.name
- the name for the value.value
- the invalid value.minValue
- the minimum value allowed.maxValue
- the maximum value allowedIllegalArgumentException
for the error.@Message(id=10636, value="Screen real estate is expensive; displayUnits must be 5 characters or less") RuntimeException maxDisplayUnitLength()
RuntimeException
for the error.@Message(id=10637, value="No active request found for %d") IOException noActiveRequest(int batchId)
batchId
- the batch id.IOException
for the error.@Message(id=10638, value="No failure details provided") String noFailureDetails()
@Message(id=10639, value="No %s is configured") IllegalStateException notConfigured(String name)
name
is not configured.name
- the name that is not configured.IllegalStateException
for the error.@Message(id=10640, value="%s is null") IllegalArgumentException nullVar(String name)
name
parameter, is null
.name
- the name of the variable.IllegalArgumentException
for the error.@Message(id=10641, value="%s is closed") IllegalStateException objectIsClosed(String name)
name
- the name of the object.IllegalStateException
for the error.@Message(id=10642, value="Operation outcome is %s") RuntimeException operationOutcome(String outcome)
outcome
- the operation outcome.RuntimeException
for the error.@Message(id=10643, value="%s operations are not allowed after content and deployment modifications") IllegalStateException operationsNotAllowed(String name)
name
- the name for the operations.IllegalStateException
for the error.@Message(id=10644, value="Rollback was cancelled") RollbackCancelledException rollbackCancelled()
RollbackCancelledException
for the error.@Message(id=10645, value="Rollback was itself rolled back") RollbackCancelledException rollbackRolledBack()
RollbackCancelledException
for the error.@Message(id=10646, value="Rollback timed out") RollbackCancelledException rollbackTimedOut()
RollbackCancelledException
for the error.@Message(id=10647, value="Deployment with name %s already present in the server") String serverDeploymentAlreadyExists(String name)
name
is already present in the domain.name
- the name of the deployment.@Message(id=10648, value="Unknown action type %s") IllegalStateException unknownActionType(Object type)
type
parameter, is unknown.type
- the unknown type.IllegalStateException
for the error.@Message(id=10649, value="Allocation stack trace:") ControllerClientMessages.LeakDescription controllerClientNotClosed()
@Message(id=10650, value="No failure description as the operation was successful.") IllegalArgumentException noFailureDescription()
IllegalArgumentException
for the error@Message(id=10651, value="The operation name was not defined.") IllegalArgumentException operationNameNotFound()
IllegalArgumentException
for the error@Message(id=10652, value="The address must be of type ModelType.LIST.") IllegalArgumentException invalidAddressType()
list
.IllegalArgumentException
for the errorCopyright © 2014 JBoss by Red Hat. All rights reserved.