Package com.thalesgroup.gemalto.d1.card
Class TokenRequestor
- java.lang.Object
-
- com.thalesgroup.gemalto.d1.card.TokenRequestor
-
public final class TokenRequestor extends Object
Information about the token requestor.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description TokenRequestor(String id, String name, List<AssetContent> assets, List<ProvisioningMethod> provisioningMethods)
Public Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AssetContent>
getAssets()
Get the assets (image) of the token requestor.String
getID()
Gets the ID of the token requestor.String
getName()
Gets the name of the token requestor.List<ProvisioningMethod>
getProvisioningMethods()
Gets the provisioning methods used by the token requestor.
-
-
-
Constructor Detail
-
TokenRequestor
public TokenRequestor(@NonNull String id, @NonNull String name, @Nullable List<AssetContent> assets, @NonNull List<ProvisioningMethod> provisioningMethods)
Public Constructor
-
-
Method Detail
-
getID
@NonNull public String getID()
Gets the ID of the token requestor.- Returns:
- The ID of the token requestor.
-
getName
@NonNull public String getName()
Gets the name of the token requestor.- Returns:
- The name of the token requestor.
-
getAssets
@Nullable public List<AssetContent> getAssets()
Get the assets (image) of the token requestor.- Returns:
- The assets of the token requestor.
-
getProvisioningMethods
@NonNull public List<ProvisioningMethod> getProvisioningMethods()
Gets the provisioning methods used by the token requestor.- Returns:
- The provisioning methods used by the token requestor.
-
-