Class AuthMethod
- java.lang.Object
-
- de.stklcode.jvault.connector.model.response.embedded.AuthMethod
-
public final class AuthMethod extends Object
Embedded authentication method response.- Since:
- 0.1
- Author:
- Stefan Kalscheuer
-
-
Constructor Summary
Constructors Constructor Description AuthMethod()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getConfig()
String
getDescription()
String
getRawType()
AuthBackend
getType()
boolean
isLocal()
void
setType(String type)
-
-
-
Method Detail
-
setType
public void setType(String type)
- Parameters:
type
- Backend type, passed toAuthBackend.forType(String)
-
getType
public AuthBackend getType()
- Returns:
- Backend type
-
getRawType
public String getRawType()
- Returns:
- Raw backend type string
-
getDescription
public String getDescription()
- Returns:
- Description
-
isLocal
public boolean isLocal()
- Returns:
- Is local backend
-
-