All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.castle.client.internal.utils.VerdictTransportModel Maven / Gradle / Ivy

Go to download

Castle adds real-time monitoring of your authentication stack, instantly notifying you and your users on potential account hijacks.

There is a newer version: 2.4.2
Show newest version
package io.castle.client.internal.utils;

import io.castle.client.model.AuthenticateAction;

public class VerdictTransportModel {

    private AuthenticateAction action;
    private String userId;

    public AuthenticateAction getAction() {
        return action;
    }

    public void setAction(AuthenticateAction action) {
        this.action = action;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy