001
002package io.vrap.rmf.base.client;
003
004public class TokenIntrospection {
005
006    private boolean active;
007
008    private String scope;
009
010    private Long exp;
011
012    public TokenIntrospection() {
013
014    }
015
016    public boolean isActive() {
017        return active;
018    }
019
020    public void setActive(final boolean active) {
021        this.active = active;
022    }
023
024    public String getScope() {
025        return scope;
026    }
027
028    public void setScope(final String scope) {
029        this.scope = scope;
030    }
031
032    public Long getExp() {
033        return exp;
034    }
035
036    public void setExp(final Long exp) {
037        this.exp = exp;
038    }
039}