com.identityx.clientSDK.queryHolders.RegistrationChallengeQueryHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of IdentityXClientSDK Show documentation
Show all versions of IdentityXClientSDK Show documentation
Client SDK for IdentityX Rest Services
package com.identityx.clientSDK.queryHolders;
import com.daon.identityx.rest.model.def.RegistrationChallengeStatusEnum;
import com.identityx.clientSDK.expandSpecs.RegistrationChallengeExpandSpecForList;
public class RegistrationChallengeQueryHolder extends QueryHolder {
public class RegistrationChallengeSearchSpec extends SearchSpec {
private RegistrationChallengeStatusEnum status;
public RegistrationChallengeStatusEnum getStatus() {
return status;
}
public void setStatus(RegistrationChallengeStatusEnum status) {
this.status = status;
}
}
private RegistrationChallengeSearchSpec searchSpec = new RegistrationChallengeSearchSpec();
private RegistrationChallengeExpandSpecForList expandSpec = new RegistrationChallengeExpandSpecForList();
@Override
public RegistrationChallengeExpandSpecForList getExpandSpec() {
return expandSpec;
}
@Override
public RegistrationChallengeSearchSpec getSearchSpec() {
return searchSpec;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy