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

jadex.bridge.service.annotation.Authenticated Maven / Gradle / Ivy

Go to download

Jadex bridge is a base package for kernels and platforms, i.e. it is used by both and provides commonly used interfaces and classes for active components and their management.

The newest version!
package jadex.bridge.service.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Authenticated
{
	public static String AUTHENTICATED = "authenticated";

	/**
	 *  The platform (prefix) names that are allowed.
	 */
	public String[] names() default {};
	
	/**
	 *  The virtual names. Are mapped to real platform names
	 *  via the security service.
	 */
	public String[] virtuals() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy