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

org.xbib.io.ftp.fs.SimpleGroupPrincipal Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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