
org.freedesktop.dbus.connections.impl.ConnectionConfig 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.
package org.freedesktop.dbus.connections.impl;
import org.freedesktop.dbus.connections.IDisconnectCallback;
public class ConnectionConfig {
private boolean exportWeakReferences;
private boolean importWeakReferences;
private IDisconnectCallback disconnectCallback;
public boolean isExportWeakReferences() {
return exportWeakReferences;
}
public void setExportWeakReferences(boolean _exportWeakReferences) {
exportWeakReferences = _exportWeakReferences;
}
public boolean isImportWeakReferences() {
return importWeakReferences;
}
public void setImportWeakReferences(boolean _importWeakReferences) {
importWeakReferences = _importWeakReferences;
}
public IDisconnectCallback getDisconnectCallback() {
return disconnectCallback;
}
public void setDisconnectCallback(IDisconnectCallback _disconnectCallback) {
disconnectCallback = _disconnectCallback;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy