org.freedesktop.dbus.RemoteObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbus-java-core Show documentation
Show all versions of dbus-java-core Show documentation
Improved version of the DBus-Java library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).
package org.freedesktop.dbus;
import org.freedesktop.dbus.interfaces.DBusInterface;
public class RemoteObject {
private String busname;
private String objectpath;
private Class extends DBusInterface> iface;
private boolean autostart;
public RemoteObject(String _busname, String _objectpath, Class extends DBusInterface> _iface, boolean _autostart) {
this.busname = _busname;
this.objectpath = _objectpath;
this.iface = _iface;
this.autostart = _autostart;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof RemoteObject)) {
return false;
}
RemoteObject them = (RemoteObject) o;
if (!them.objectpath.equals(this.objectpath)) {
return false;
}
if (null == this.busname && null != them.busname) {
return false;
}
if (null != this.busname && null == them.busname) {
return false;
}
if (null != them.busname && !them.busname.equals(this.busname)) {
return false;
}
if (null == this.iface && null != them.iface) {
return false;
}
if (null != this.iface && null == them.iface) {
return false;
}
if (null != them.iface && !them.iface.equals(this.iface)) {
return false;
}
return true;
}
@Override
public int hashCode() {
return (null == busname ? 0 : busname.hashCode()) + objectpath.hashCode() + (null == iface ? 0 : iface.hashCode());
}
public boolean isAutostart() {
return autostart;
}
public String getBusName() {
return busname;
}
public String getObjectPath() {
return objectpath;
}
public Class extends DBusInterface> getInterface() {
return iface;
}
@Override
public String toString() {
return busname + ":" + objectpath + ":" + iface;
}
}