/*
* $Header: /export/home/cvsroot/MyPersonalizerRepository/MyPersonalizer/Subsystems/Portal/Sources/es/udc/mypersonalizer/portal/model/types/PortalEvent.java,v 1.1.1.1 2004/03/25 12:08:40 fbellas Exp $
* $Revision: 1.1.1.1 $
* $Date: 2004/03/25 12:08:40 $
*
* =============================================================================
*
* Copyright (c) 2003, The MyPersonalizer Development Group
* (http://www.tic.udc.es/~fbellas/mypersonalizer/index.html) at
* University Of A Coruna
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* - Neither the name of the University Of A Coruna nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
package es.udc.mypersonalizer.portal.model.types;
import es.udc.mypersonalizer.portal.model.permissions.
UserCredentials;
import java.io.Serializable;
/**
* This class creates a convenient superclass for most of the events needed
* in the system. It only contains a user's credentials as most of the events
* that will be part of the system will need the user which is executing the
* action related to the event to be determined through his login name, part
* of the credentials, and his permissions are needed to execute several
* actioms.
*
* @author Daniel Fernandez
* @since 1.0
*/
public class PortalEvent implements Serializable {
/**
* The user's credentials
*/
private UserCredentials userCredentials;
/**
* Creates an instance of this class. It needs the credentials for the
* user to whom this event will belong
*
* @param userCredentials the user's credentials
*/
public PortalEvent(UserCredentials userCredentials) {
this.userCredentials = userCredentials;
}
/**
* Returns the credentials of the user to whom this action belongs
*
* @return a UserCredentials with the user's credentials
*/
public UserCredentials getUserCredentials() {
return userCredentials;
}
/**
* Sets a new value to the credentials of the user that is executing
* the action to which this event is related
*
* @param userCredentials the user's credentials
*/
public void setUserCredentials(UserCredentials userCredentials) {
this.userCredentials = userCredentials;
}
}
|