Groovy Documentation

com.ace.mws.plugins
[Java] Annotation Type Unsecured

java.lang.Object
  com.ace.mws.plugins.Unsecured

@Retention(RetentionPolicy.RUNTIME) // Make this annotation accessible at runtime via reflection.
@Target({ElementType.METHOD})	   // This annotation can only be applied to class methods.
public @interface Unsecured

Used on plugin custom web service methods to signify that the web service should not be secured and can be called externally without any authentication.

Authors:
bsaville


Method Summary
 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Groovy Documentation