Package org.duracloud.storage.domain
Interface StorageAccount
-
- All Known Implementing Classes:
StorageAccountImpl
public interface StorageAccount- Author:
- Andrew Woods Date: 5/9/11
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classStorageAccount.OPTSThis enum holds names of attributes that are not in the common getters/setters of this interface.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Map<String,String>getOptions()StringgetOwnerId()StringgetPassword()org.duracloud.storage.domain.StorageProviderTypegetType()StringgetUsername()booleanisPrimary()voidsetId(String id)voidsetOption(String key, String value)voidsetOwnerId(String ownerId)voidsetPassword(String password)voidsetPrimary(boolean primary)voidsetType(org.duracloud.storage.domain.StorageProviderType type)voidsetUsername(String username)
-
-
-
Method Detail
-
getId
String getId()
-
setId
void setId(String id)
-
getOwnerId
String getOwnerId()
-
setOwnerId
void setOwnerId(String ownerId)
-
getUsername
String getUsername()
-
setUsername
void setUsername(String username)
-
getPassword
String getPassword()
-
setPassword
void setPassword(String password)
-
getType
org.duracloud.storage.domain.StorageProviderType getType()
-
setType
void setType(org.duracloud.storage.domain.StorageProviderType type)
-
isPrimary
boolean isPrimary()
-
setPrimary
void setPrimary(boolean primary)
-
-