public interface LunDAO extends DAO
LunDAO defines a type for performing CRUD operations on instances of LUNs.| Modifier and Type | Method and Description |
|---|---|
LUNs |
get(String id)
Gets the LUN with the specified id.
|
List<LUNs> |
getAll()
Retrieves all LUNs.
|
List<LUNs> |
getAllForStorageServerConnection(String id)
Retrieves the list of LUNs for the given storage server connection.
|
List<LUNs> |
getAllForVolumeGroup(String id)
Retrieves the list of LUNs for the given VG id.
|
void |
remove(String id)
Removes the specified LUN.
|
void |
save(LUNs lun)
Saves the supplied LUN instance.
|
LUNs get(String id)
id - the LUN idList<LUNs> getAllForStorageServerConnection(String id)
id - the storage server connection idList<LUNs> getAllForVolumeGroup(String id)
id - the VG idvoid save(LUNs lun)
lun - the LUNvoid remove(String id)
id - the LUN idCopyright © 2012. All Rights Reserved.