moved to java7+ strict compatibility
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@115638 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
e219cc6d77
commit
e0f7e215ef
Binary file not shown.
|
@ -1603,7 +1603,7 @@ public final class DBCassandraAstyanaxImpl implements DatabookStore {
|
|||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public InviteOperationResult saveInvite(Invite invite) throws AddressException, NullArgumentException {
|
||||
public InviteOperationResult saveInvite(Invite invite) throws AddressException {
|
||||
if (invite == null)
|
||||
throw new NullArgumentException("Invite instance is null");
|
||||
String email = invite.getInvitedEmail();
|
||||
|
|
|
@ -365,7 +365,7 @@ public interface DatabookStore {
|
|||
* @param invite the invite object instanc to save
|
||||
* @return {@link InviteOperationResult} SUCCESS, FAILED or ALREADY_INVITED (if an invite is sent to en existing email in the same environment more than once)
|
||||
*/
|
||||
InviteOperationResult saveInvite(Invite invite) throws AddressException, NullArgumentException;
|
||||
InviteOperationResult saveInvite(Invite invite) throws AddressException;
|
||||
/**
|
||||
*
|
||||
* @param vreid the environment where you want to check the invite
|
||||
|
|
Loading…
Reference in New Issue