com.ibm.websphere.management.application.client
Interface AppDeploymentMessages
-
public interface AppDeploymentMessagesThis interface provides APIs that clients of application installation can call to get various NLS messages related to AppDeploymentTasks.
-
-
Method Summary
Methods Modifier and Type Method and Description java.lang.StringgetColumnName(java.lang.String columnName, java.lang.String taskName)Returns column name for the data to be displayed for a task.java.lang.StringgetDisableTaskMessage(java.lang.String taskName)Returns message to be displayed when the task is disabled (typically since there are dependencies that need to be completed before this task can be executed).java.lang.StringgetEmptyTaskMessage(java.lang.String taskName)Returns the message to be displayed when the task has no data to be displayed.java.lang.StringgetGoalMessage(java.lang.String taskName)Returns detailed goal message for the task.java.lang.StringgetGoalTitle(java.lang.String taskName)Returns goal title for the task.java.lang.StringgetMessage(java.lang.String key)Returns a translated message for a given key.
-
-
-
Method Detail
-
getGoalTitle
java.lang.String getGoalTitle(java.lang.String taskName)
Returns goal title for the task.- Parameters:
taskName- The task name.- Returns:
- Returns the goal title for the task.
-
getGoalMessage
java.lang.String getGoalMessage(java.lang.String taskName)
Returns detailed goal message for the task.- Parameters:
taskName- The task name.- Returns:
- Returns the goal message for the task.
-
getEmptyTaskMessage
java.lang.String getEmptyTaskMessage(java.lang.String taskName)
Returns the message to be displayed when the task has no data to be displayed.- Parameters:
taskName- The task name.- Returns:
- Returns the empty task message for the task.
-
getDisableTaskMessage
java.lang.String getDisableTaskMessage(java.lang.String taskName)
Returns message to be displayed when the task is disabled (typically since there are dependencies that need to be completed before this task can be executed).- Parameters:
taskName- The task name.- Returns:
- Returns the message to be displayed when the task is disabled
-
getColumnName
java.lang.String getColumnName(java.lang.String columnName, java.lang.String taskName)Returns column name for the data to be displayed for a task.- Parameters:
columnName- The column name.taskName- The task name.- Returns:
- Returns the column name.
-
getMessage
java.lang.String getMessage(java.lang.String key)
Returns a translated message for a given key.- Parameters:
key- The message key- Returns:
- The translated message
-
-