jet.server.api
Interface SecurityContext


public interface SecurityContext

SecurityContext is an interface that is used to help you implement customer security context.


Method Summary
 java.lang.String getEmail()
          Returns the email address of the user.
 java.util.Vector getRoles()
          Returns the roles the user belongs to.
 java.lang.String getSalutation()
          Returns the salutation of the user (e.g., Mr., Mrs., etc).
 java.lang.String getUserName()
          Returns the user name.
 

Method Detail

getUserName

java.lang.String getUserName()
Returns the user name.

Returns:
the user name.

getRoles

java.util.Vector getRoles()
Returns the roles the user belongs to.

Returns:
roles the user belongs to.

getEmail

java.lang.String getEmail()
Returns the email address of the user.

Returns:
the email address of the user.

getSalutation

java.lang.String getSalutation()
Returns the salutation of the user (e.g., Mr., Mrs., etc).

Returns:
the salutation of the user.