kerby-kerb/kerb-client/src/main/java/org/apache/kerby/kerberos/kerb/client/preauth/token/TokenRequestContext.java [25:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class TokenRequestContext implements PluginRequestContext {

    private boolean doIdentityMatching;
    private PaDataType paType;
    private boolean identityInitialized;
    private boolean identityPrompted;

    public boolean isDoIdentityMatching() {
        return doIdentityMatching;
    }
    public void setDoIdentityMatching(boolean doIdentityMatching) {
        this.doIdentityMatching = doIdentityMatching;
    }
    public PaDataType getPaType() {
        return paType;
    }
    public void setPaType(PaDataType paType) {
        this.paType = paType;
    }
    public boolean isIdentityInitialized() {
        return identityInitialized;
    }
    public void setIdentityInitialized(boolean identityInitialized) {
        this.identityInitialized = identityInitialized;
    }
    public boolean isIdentityPrompted() {
        return identityPrompted;
    }
    public void setIdentityPrompted(boolean identityPrompted) {
        this.identityPrompted = identityPrompted;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kerby-kerb/kerb-server/src/main/java/org/apache/kerby/kerberos/kerb/server/preauth/token/TokenRequestContext.java [25:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class TokenRequestContext implements PluginRequestContext {

    private boolean doIdentityMatching;
    private PaDataType paType;
    private boolean identityInitialized;
    private boolean identityPrompted;

    public boolean isDoIdentityMatching() {
        return doIdentityMatching;
    }
    public void setDoIdentityMatching(boolean doIdentityMatching) {
        this.doIdentityMatching = doIdentityMatching;
    }
    public PaDataType getPaType() {
        return paType;
    }
    public void setPaType(PaDataType paType) {
        this.paType = paType;
    }
    public boolean isIdentityInitialized() {
        return identityInitialized;
    }
    public void setIdentityInitialized(boolean identityInitialized) {
        this.identityInitialized = identityInitialized;
    }
    public boolean isIdentityPrompted() {
        return identityPrompted;
    }
    public void setIdentityPrompted(boolean identityPrompted) {
        this.identityPrompted = identityPrompted;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



