
org.freedesktop.dbus.connections.transports.IFileBasedBusAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbus-java-osgi Show documentation
Show all versions of dbus-java-osgi Show documentation
Improved version of the DBus-Java library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).
This is the OSGi compliant bundle of all required libraries in one bundle.
The newest version!
package org.freedesktop.dbus.connections.transports;
import org.freedesktop.dbus.connections.BusAddress;
import java.nio.file.attribute.PosixFilePermission;
import java.util.Set;
/**
* Interface which should be implemented by {@link BusAddress} subclasses which use
* files as 'address' (e.g. unix sockets) and needs to set permission on those files.
*
* @author hypfvieh
* @since 4.2.0 - 2022-07-18
*/
public interface IFileBasedBusAddress {
void updatePermissions(String _fileOwner, String _fileGroup, Set _fileUnixPermissions);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy