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

org.freedesktop.dbus.annotations.DBusIgnore Maven / Gradle / Ivy

Go to download

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.

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