com.kerb4j.common.marshall.pac.PacGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kerb4j Show documentation
Show all versions of kerb4j Show documentation
Helper classes for working with Kerberos and SPNEGO in Java
package com.kerb4j.common.marshall.pac;
public class PacGroup {
private PacSid id;
private int attributes;
public PacGroup(PacSid id, int attributes) {
super();
this.id = id;
this.attributes = attributes;
}
public PacSid getId() {
return id;
}
public int getAttributes() {
return attributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy