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

org.asteriskjava.manager.AsteriskMapping Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
package org.asteriskjava.manager;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

/**
 * Customized the mapping to Asterisk. In general the mapping is done implicitly based
 * on reflection but there are certain action that are using headers with specical
 * characters that can not be represented in Java. In those cases you can annotate
 * the property (getter, setter or field) and provide the header name that Asterisk expects.
 *
 * @since 1.0.0
 */
@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface AsteriskMapping
{
    public abstract String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy