
org.freedesktop.dbus.annotations.DBusIgnore 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.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Mark an exported method as ignored.
* It will not be included in introspection data, and it will not be
* remotely callable. This is only useful for a local DBus object, it has no meaning to remote objects.
*
* Usage:
*
*
* {@literal @}DBusInterfaceName("com.example.Bar")
* public interface Bar extends DBusInterface {
*
* {@literal @}DBusIgnore
* public void doSomethingInternal() {
* }
* }
*
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface DBusIgnore {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy