Class CloudSummaryInfoItem

java.lang.Object
com.morpheusdata.model.CloudSummaryInfoItem

public class CloudSummaryInfoItem extends Object
Represents an individual info item to be displayed in the Cloud Summary info section. Each item consists of a label (name or i18n code) and a value.
Since:
1.2.15
  • Field Details

    • name

      protected String name
      The display name for this info item. Used if code is not specified.
    • code

      protected String code
      The i18n message code for this info item's label. If specified, this takes precedence over name. Example: "gomorpheus.label.apiVersion"
    • value

      protected String value
      The value to display for this info item. This will be rendered as a string.
  • Constructor Details

    • CloudSummaryInfoItem

      public CloudSummaryInfoItem()
    • CloudSummaryInfoItem

      public CloudSummaryInfoItem(String name, String value)
    • CloudSummaryInfoItem

      public CloudSummaryInfoItem(String name, String code, String value)
  • Method Details

    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getCode

      public String getCode()
    • setCode

      public void setCode(String code)
    • getValue

      public String getValue()
    • setValue

      public void setValue(String value)