com.eclipsesource.restfuse.annotation
Annotation Type Authentication


@Retention(value=RUNTIME)
@Target(value=ANNOTATION_TYPE)
public @interface Authentication

The Authentication can be used within a HttpTest annotation to send authentication information within an outgoing http request. Currently only BASIC and DIGEST authentication are supported.

See Also:
AuthenticationType

Required Element Summary
 java.lang.String password
           
 AuthenticationType type
          The type attribute specifies the type of the authentication method.
 java.lang.String user
           
 

Element Detail

password

public abstract java.lang.String password

type

public abstract AuthenticationType type

The type attribute specifies the type of the authentication method. Currently only BASIC and DIGEST authentication are supported. This may change in future.

See Also:
AuthenticationType

user

public abstract java.lang.String user