com.adobe.edc.server.spi.ersp
Class InvitedUserProviderResult

java.lang.Object
  extended by com.adobe.edc.server.spi.ersp.InvitedUserProviderResult

public class InvitedUserProviderResult
extends java.lang.Object

The InvitedUserProviderResult class is used by the InvitedUserProvider interface to return the result as part of the invitedUser() method.


Constructor Summary
InvitedUserProviderResult()
           
 
Method Summary
 java.lang.String getEmail()
          Retrieves the email name.
 User getUser()
          Retrieves the successfully created user from the InvitedUserProvider interface.
 void setEmail(java.lang.String email)
          Sets the email.
 void setUser(User u)
          Sets the successfully created user during the call to invitedUser().
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InvitedUserProviderResult

public InvitedUserProviderResult()
Method Detail

getEmail

public java.lang.String getEmail()
Retrieves the email name.

Returns:
A java.lang.String containing the email name.

setEmail

public void setEmail(java.lang.String email)
Sets the email.

Parameters:
email - The email name.

getUser

public User getUser()
Retrieves the successfully created user from the InvitedUserProvider interface.


setUser

public void setUser(User u)
Sets the successfully created user during the call to invitedUser().

Parameters:
u - The user name.