Interface CumulocityCredentials
-
- All Known Implementing Classes:
CumulocityBasicCredentials,CumulocityOAuthCredentials
public interface CumulocityCredentials
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceCumulocityCredentials.CumulocityCredentialsVisitor<T>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> Taccept(CumulocityCredentials.CumulocityCredentialsVisitor<T> visitor)CumulocityCredentialscopy()StringgetApplicationKey()AuthenticationMethodgetAuthenticationMethod()StringgetAuthenticationString()StringgetRequestOrigin()StringgetTenantId()StringgetUsername()voidsetApplicationKey(String applicationKey)voidsetRequestOrigin(String requestOrigin)
-
-
-
Method Detail
-
getAuthenticationString
String getAuthenticationString()
-
getUsername
String getUsername()
-
getTenantId
String getTenantId()
-
getApplicationKey
String getApplicationKey()
-
setApplicationKey
void setApplicationKey(String applicationKey)
-
getRequestOrigin
String getRequestOrigin()
-
setRequestOrigin
void setRequestOrigin(String requestOrigin)
-
getAuthenticationMethod
AuthenticationMethod getAuthenticationMethod()
-
copy
CumulocityCredentials copy()
-
accept
<T> T accept(CumulocityCredentials.CumulocityCredentialsVisitor<T> visitor)
-
-