![JAR search and dependency download from the Maven repository](/logo.png)
jcifs.dcerpc.msrpc.LsarSidArrayX Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcifs-krb5-jdk7 Show documentation
Show all versions of jcifs-krb5-jdk7 Show documentation
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java
package jcifs.dcerpc.msrpc;
import jcifs.smb.SID;
class LsarSidArrayX extends lsarpc.LsarSidArray {
LsarSidArrayX(SID[] sids) {
this.num_sids = sids.length;
this.sids = new lsarpc.LsarSidPtr[sids.length];
for (int si = 0; si < sids.length; si++) {
this.sids[si] = new lsarpc.LsarSidPtr();
this.sids[si].sid = sids[si];
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy