Package org.duracloud.account.db.model
Class ProviderAccount
- java.lang.Object
-
- org.duracloud.account.db.model.BaseEntity
-
- org.duracloud.account.db.model.ProviderAccount
-
- Direct Known Subclasses:
StorageProviderAccount
@MappedSuperclass public abstract class ProviderAccount extends BaseEntity
-
-
Field Summary
Fields Modifier and Type Field Description protected StringpasswordThe password necessary to connect to this provider's services.protected StringusernameThe username necessary to connect to this provider's services.-
Fields inherited from class org.duracloud.account.db.model.BaseEntity
id
-
-
Constructor Summary
Constructors Constructor Description ProviderAccount()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPassword()StringgetUsername()voidsetPassword(String password)voidsetUsername(String username)-
Methods inherited from class org.duracloud.account.db.model.BaseEntity
equals, getId, getModified, hashCode, setId, setModified
-
-
-
-
Field Detail
-
username
protected String username
The username necessary to connect to this provider's services. This may have different names at each provider (e.g. at Amazon, this is the Access Key ID)
-
password
protected String password
The password necessary to connect to this provider's services. This may have different names at each provider (e.g. at Amazon, this is the Secret Access Key)
-
-