com.identityx.clientSDK.expandSpecs.AuthenticatorExpandSpecForList 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.expandSpecs;
import com.identityx.clientSDK.queryHolders.ExpandSpec;
import com.identityx.clientSDK.queryHolders.ExpandSpecItem;
public class AuthenticatorExpandSpecForList extends ExpandSpec {
public class AuthenticatorExpandSpecForListItems {
private boolean expand = true;
private ExpandSpecItem application = new ExpandSpecItem();
private ExpandSpecItem user = new ExpandSpecItem();
private ExpandSpecItem authenticatorType = new ExpandSpecItem();
public ExpandSpecItem getApplication() {
return application;
}
public ExpandSpecItem getUser() {
return user;
}
public ExpandSpecItem getAuthenticatorType() {
return authenticatorType;
}
public boolean isExpand() {
return expand;
}
public void setExpand(boolean expand) {
this.expand = expand;
}
}
private AuthenticatorExpandSpecForListItems items = new AuthenticatorExpandSpecForListItems();
public AuthenticatorExpandSpecForListItems getItems() {
return items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy