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

io.vrap.rmf.base.client.TokenIntrospection Maven / Gradle / Ivy

There is a newer version: 17.17.0
Show newest version

package io.vrap.rmf.base.client;

public class TokenIntrospection {

    private boolean active;

    private String scope;

    private Long exp;

    public TokenIntrospection() {

    }

    public boolean isActive() {
        return active;
    }

    public void setActive(final boolean active) {
        this.active = active;
    }

    public String getScope() {
        return scope;
    }

    public void setScope(final String scope) {
        this.scope = scope;
    }

    public Long getExp() {
        return exp;
    }

    public void setExp(final Long exp) {
        this.exp = exp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy