org.xbib.io.ftp.fs.SimpleGroupPrincipal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftp-fs Show documentation
Show all versions of ftp-fs Show documentation
Java FTP client, Java FTP NIO file system, Groovy FTP client
package org.xbib.io.ftp.fs;
import java.nio.file.attribute.GroupPrincipal;
/**
* A {@link GroupPrincipal} implementation that simply stores a name.
*/
public class SimpleGroupPrincipal extends SimpleUserPrincipal implements GroupPrincipal {
/**
* Creates a new group principal.
*
* @param name The name of the group principal.
*/
public SimpleGroupPrincipal(String name) {
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy