mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
17635: Complete fix for ETHREEOH-2879 - user with missing first/last name able to use Discussions, Blogs, Links etc. in Share. 17637: Fix regression from r17601: Favourite sites in header menu. 17638: Fix ETHREEOH-3610 - upgrade Enterprise 2.x -> 3.2 (personUsagePatch) 17641: ETHREEOH-3612 Security Issue : DeploymentTarget uses String to represent passwords 17642: Fix for ETHREEOH-3482 - Impossible to delete content from its details page. - regression due to the "AbortProcessingException" changes added a while back. 17660: Minor functional fixes for mobile app and cleanup 17663: Fixed ETHREEOH-3664 "'My Tasks' dashlet could not load task list if a user was invited to a private site" - When webscript accessed a private site undefined was returned so the title and description couldn't be displayed, now the values are store on the invite task instead. 17665: Fix up compile errors from r17663 - also clean up old code to coding standards in related invite classes. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18162 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
70 lines
2.1 KiB
Java
70 lines
2.1 KiB
Java
/*
|
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing"
|
|
*/
|
|
package org.alfresco.service.cmr.invitation;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
* The nominated invitation is a model object for who, needs to be added or removed
|
|
* from which resource with which attributes.
|
|
*
|
|
* Invitations are processed by the InvitationService
|
|
*
|
|
* @see org.alfresco.service.cmr.invitation.InvitationService
|
|
*
|
|
* @author mrogers
|
|
*/
|
|
public interface NominatedInvitation extends Invitation
|
|
{
|
|
public String getInviteeUserName();
|
|
|
|
public String getInviteeFirstName();
|
|
|
|
public String getInviteeLastName();
|
|
|
|
public String getInviteeEmail();
|
|
|
|
public String getResourceName();
|
|
|
|
public String getResourceTitle();
|
|
|
|
public String getResourceDescription();
|
|
|
|
public String getServerPath();
|
|
|
|
public String getAcceptUrl();
|
|
|
|
public String getRejectUrl();
|
|
|
|
public Date getSentInviteDate();
|
|
|
|
public String getInviterUserName();
|
|
|
|
public String getTicket();
|
|
|
|
public String getRoleName();
|
|
}
|