Class BaseSelectedItem

java.lang.Object
com.iland.core.web.rest.request.vbo.BaseSelectedItem
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
O365JobGroupRequest.Group, O365JobUserRequest.User

public abstract class BaseSelectedItem extends Object implements Serializable
Base class for an item for backup type selected items.
Author:
Sachin Mittal
See Also:
  • Constructor Details

    • BaseSelectedItem

      public BaseSelectedItem(String id, String displayName, String name, String type, boolean backedUp)
      Creates an item for backup type Selected items.
      Parameters:
      id - Specifies the VBO ID of the backup item.
      displayName - Specifies the display name of the backup item.
      name - Specifies the name of the backup item.
      type - Specifies the type of the backup item.
      backedUp - Specifies if the item is backed up
  • Method Details

    • getId

      public String getId()
      Specifies the ID of the backup item.
      Returns:
      the Vbo ID
    • getDisplayName

      public String getDisplayName()
      Specifies the display name of the backup item.
      Returns:
      the item display name
    • getName

      public String getName()
      Specifies the name of the backup item.
      Returns:
      the item display name
    • getType

      public String getType()
      Specifies the type of the backup item.
      Returns:
      the item type
    • isBackedUp

      public boolean isBackedUp()
      Specifies if the item is backed up.
      Returns:
      whether the item is backed up.