Interface ControllerClientLogger

    • Method Detail

      • cannotAddDeploymentAction

        @Message(id=1,
                 value="Cannot add deployment actions after starting creation of a rollout plan")
        IllegalStateException cannotAddDeploymentAction()
        Creates an exception indicating after starting creation of the rollout plan no deployment actions can be added.
        Returns:
        a IllegalStateException for the error.
      • cannotAddDeploymentActionsAfterStart

        @Message(id=2,
                 value="Cannot add deployment actions after starting creation of a rollout plan")
        IllegalStateException cannotAddDeploymentActionsAfterStart()
        Creates an exception indicating no deployment actions can be added after starting the creation of the rollout plan.
        Returns:
        an IllegalStateException for the error.
      • cannotConvert

        @Message(id=3,
                 value="Cannot convert %s to %s")
        String cannotConvert​(String first,
                             String second)
        A message indicating that first cannot be converted to second.
        Parameters:
        first - the type that could not be converted.
        second - the type attempting to be converted to.
        Returns:
        the message.
      • cannotDeriveDeploymentName

        @Message(id=4,
                 value="Cannot derive a deployment name from %s -- use an overloaded method variant that takes a \'name\' parameter")
        IllegalArgumentException cannotDeriveDeploymentName​(URL url)
        Creates an exception indicating the deployment name could not be derived from the URL.
        Parameters:
        url - the URL to the deployment.
        Returns:
        an IllegalArgumentException for the error.
      • cannotUseDeploymentPlan

        @Message(id=5,
                 value="Cannot use a DeploymentPlan not created by this manager")
        IllegalArgumentException cannotUseDeploymentPlan()
        Creates an exception indicating the DeploymentPlan cannot be used because it was not created by this manager.
        Returns:
        an IllegalArgumentException for the error.
      • domainDeploymentAlreadyExists

        @Message(id=7,
                 value="Deployment with name %s already present in the domain")
        String domainDeploymentAlreadyExists​(String name)
        A message indicating a deployment with the name is already present in the domain.
        Parameters:
        name - the name of the deployment.
        Returns:
        the message.
      • failed

        @Message(id=8,
                 value="failed")
        String failed()
        The word failed.
        Returns:
        failed.
      • globalRollbackNotCompatible

        @Message(id=9,
                 value="Global rollback is not compatible with a server restart")
        IllegalStateException globalRollbackNotCompatible()
        Creates an exception indicating a global rollback is not compatible with a server restart.
        Returns:
        an IllegalStateException for the error.
      • gracefulShutdownAlreadyConfigured

        @Message(id=10,
                 value="Graceful shutdown already configured with a timeout of %d ms")
        IllegalStateException gracefulShutdownAlreadyConfigured​(long timeout)
        Creates an exception indicating the graceful shutdown already configured with a timeout, represented by the timeout parameter.
        Parameters:
        timeout - the already configured timeout.
        Returns:
        an IllegalStateException for the error.
      • incompleteDeploymentReplace

        @Message(id=11,
                 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)
        A message indicating only one version of a deployment with a given unique name can exist in the domain.
        Parameters:
        deploymentName - the deployment name.
        missingGroups - the missing groups.
        Returns:
        the message.
      • invalidActionType

        @Message(id=12,
                 value="Invalid action type %s")
        IllegalStateException invalidActionType​(DeploymentAction.Type type)
        Creates an exception indicating the action type, represented by the type parameter, is invalid.
        Parameters:
        type - the invalid type.
        Returns:
        an IllegalStateException for the error.
      • invalidPrecedingAction

        @Message(id=13,
                 value="Preceding action was not a %s")
        IllegalStateException invalidPrecedingAction​(Object type)
        Creates an exception indicating the preceding action was not a type.
        Parameters:
        type - the type that preceding action should be.
        Returns:
        an IllegalStateException for the error.
      • invalidUri

        @Message(id=14,
                 value="%s is not a valid URI")
        IllegalArgumentException invalidUri​(@Cause
                                            Throwable cause,
                                            URL url)
        Creates an exception indicating the URL is not a valid URI.
        Parameters:
        cause - the cause of the error.
        url - the URL.
        Returns:
        an IllegalArgumentException for the error.
      • invalidValue

        @Message(id=15,
                 value="Illegal %s value %d -- must be greater than %d")
        IllegalArgumentException invalidValue​(String name,
                                              int value,
                                              int minValue)
        Creates an exception indicating the value is invalid and must be greater than the minValue.
        Parameters:
        name - the name for the value.
        value - the invalid value.
        minValue - the minimum value allowed.
        Returns:
        an IllegalArgumentException for the error.
      • invalidValue

        @Message(id=16,
                 value="Illegal %s value %d -- must be greater than %d and less than %d")
        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.
        Parameters:
        name - the name for the value.
        value - the invalid value.
        minValue - the minimum value allowed.
        maxValue - the maximum value allowed
        Returns:
        an IllegalArgumentException for the error.
      • maxDisplayUnitLength

        @Message(id=17,
                 value="Screen real estate is expensive; displayUnits must be 5 characters or less")
        RuntimeException maxDisplayUnitLength()
        Creates an exception indicating that screen real estate is expensive and displayUnits must be 5 characters or less.
        Returns:
        a RuntimeException for the error.
      • noFailureDetails

        @Message(id=19,
                 value="No failure details provided")
        String noFailureDetails()
        A message indicating that no failure details were provided.
        Returns:
        the message.
      • notConfigured

        @Message(id=20,
                 value="No %s is configured")
        IllegalStateException notConfigured​(String name)
        Creates an exception indicating the name is not configured.
        Parameters:
        name - the name that is not configured.
        Returns:
        an IllegalStateException for the error.
      • objectIsClosed

        @Message(id=22,
                 value="%s is closed")
        IllegalStateException objectIsClosed​(String name)
        Creates an exception indicating the object is closed.
        Parameters:
        name - the name of the object.
        Returns:
        an IllegalStateException for the error.
      • operationOutcome

        @Message(id=23,
                 value="Operation outcome is %s")
        RuntimeException operationOutcome​(String outcome)
        Creates an exception with the operation outcome.
        Parameters:
        outcome - the operation outcome.
        Returns:
        a RuntimeException for the error.
      • operationsNotAllowed

        @Message(id=24,
                 value="%s operations are not allowed after content and deployment modifications")
        IllegalStateException operationsNotAllowed​(String name)
        Creates an exception indicating operations are not not allowed after content and deployment modifications.
        Parameters:
        name - the name for the operations.
        Returns:
        an IllegalStateException for the error.
      • serverDeploymentAlreadyExists

        @Message(id=28,
                 value="Deployment with name %s already present in the server")
        String serverDeploymentAlreadyExists​(String name)
        A message indicating a deployment with the name is already present in the domain.
        Parameters:
        name - the name of the deployment.
        Returns:
        the message.
      • unknownActionType

        @Message(id=29,
                 value="Unknown action type %s")
        IllegalStateException unknownActionType​(Object type)
        Creates an exception indicating the action type, represented by the type parameter, is unknown.
        Parameters:
        type - the unknown type.
        Returns:
        an IllegalStateException for the error.
      • controllerClientNotClosed

        @Message(id=30,
                 value="Allocation stack trace:")
        ControllerClientLogger.LeakDescription controllerClientNotClosed()
        Creates a leak description, used in the controller client to show the original allocation point creating the client.
        Returns:
        the leak description
      • noFailureDescription

        @Message(id=31,
                 value="No failure description as the operation was successful.")
        IllegalArgumentException noFailureDescription()
        Creates an exception indicating the operation was successful and no failure description exists.
        Returns:
        a IllegalArgumentException for the error
      • operationNameNotFound

        @Message(id=32,
                 value="The operation name was not defined.")
        IllegalArgumentException operationNameNotFound()
        Creates an exception indicating the operation name was not defined.
        Returns:
        a IllegalArgumentException for the error
      • invalidAddressType

        @Message(id=33,
                 value="The address must be of type ModelType.LIST.")
        IllegalArgumentException invalidAddressType()
        Creates an exception indicating the address must be of type list.
        Returns:
        an IllegalArgumentException for the error
      • leakedControllerClient

        @LogMessage(level=WARN)
        @Message(id=34,
                 value="Closing leaked controller client")
        void leakedControllerClient​(@Cause
                                    Throwable allocationStackTrace)
      • cannotDeleteTempFile

        @LogMessage(level=WARN)
        @Message(id=35,
                 value="Cannot delete temp file %s, will be deleted on exit")
        void cannotDeleteTempFile​(String name)
      • streamWasClosed

        @Message(id=36,
                 value="Stream was closed")
        IOException streamWasClosed()
      • failedToParseAuthenticationConfig

        @Message(id=37,
                 value="Failed to parse the configuration file: %s")
        RuntimeException failedToParseAuthenticationConfig​(@Cause
                                                           Throwable cause,
                                                           URI location)