Class RegisterPersonRequestType
- java.lang.Object
-
- com.fifa.connectid.sdk.core.api.models.RegisterPersonRequestType
-
public class RegisterPersonRequestType extends Object
The RegisterPersonRequestType model.
-
-
Constructor Summary
Constructors Constructor Description RegisterPersonRequestType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringlocalId()Get local identifier of person.List<HashedNameType>nameHashes()Get a list of hashes generated by the FIFA hashing service.PersonTypeperson()Get a person data that can be stored in central system.RegisterPersonRequestTypewithLocalId(String localId)Set local identifier of person.RegisterPersonRequestTypewithNameHashes(List<HashedNameType> nameHashes)Set a list of hashes generated by the FIFA hashing service.RegisterPersonRequestTypewithPerson(PersonType person)Set a person data that can be stored in central system.
-
-
-
Method Detail
-
nameHashes
public List<HashedNameType> nameHashes()
Get a list of hashes generated by the FIFA hashing service.- Returns:
- the nameHashes value
-
withNameHashes
public RegisterPersonRequestType withNameHashes(List<HashedNameType> nameHashes)
Set a list of hashes generated by the FIFA hashing service.- Parameters:
nameHashes- the nameHashes value to set- Returns:
- the RegisterPersonRequestType object itself.
-
person
public PersonType person()
Get a person data that can be stored in central system.- Returns:
- the person value
-
withPerson
public RegisterPersonRequestType withPerson(PersonType person)
Set a person data that can be stored in central system.- Parameters:
person- the person value to set- Returns:
- the RegisterPersonRequestType object itself.
-
localId
public String localId()
Get local identifier of person.- Returns:
- the localId value
-
withLocalId
public RegisterPersonRequestType withLocalId(String localId)
Set local identifier of person.- Parameters:
localId- the localId value to set- Returns:
- the RegisterPersonRequestType object itself.
-
-