All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sakaiproject.signup.logic.messages.SignupEventTrackingInfo Maven / Gradle / Ivy

/*
* Licensed to The Apereo Foundation under one or more contributor license
* agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* The Apereo Foundation licenses this file to you under the Educational 
* Community License, Version 2.0 (the "License"); you may not use this file 
* except in compliance with the License. You may obtain a copy of the 
* License at:
*
* http://opensource.org/licenses/ecl2.txt
* 
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.sakaiproject.signup.logic.messages;

import java.util.List;

import org.sakaiproject.signup.logic.SignupTrackingItem;
import org.sakaiproject.signup.model.SignupAttendee;
import org.sakaiproject.signup.model.SignupMeeting;
import org.sakaiproject.signup.model.SignupTimeslot;

/**
 * 

* This interface provides the necessary access methods to retrieve all related * information caused by an user action inside the Signup tool *

*/ public interface SignupEventTrackingInfo { /** * get a list of SignupTrackingItem objects which contains all related * information caused by an user action inside the Signup tool * * @return a list of SignupTrackingItem object */ public List getAttendeeTransferInfos(); /** * add a new/updated user action information triggered by an user * * @param attendee * an SignupAttendee object * @param timeslot * an SignupTimeslot object * @param messageType * a message type which defines what type of an action caused by * the an user * @param isInitiator * boolean value */ public void addOrUpdateAttendeeAllocationInfo(SignupAttendee attendee, SignupTimeslot timeslot, String messageType, boolean isInitiator); /** * add a new/updated user action information triggered by an user * * @param attendee * an SignupAttendee object * @param timeslot * an SignupTimeslot object * @param messageType * a message type which defines what type of an action caused by * the an user * @param isInitiator * boolean value * @param replacedAttendee * an SignupAttendee object */ public void addOrUpdateAttendeeAllocationInfo(SignupAttendee attendee, SignupTimeslot timeslot, String messageType, boolean isInitiator, SignupAttendee replacedAttendee); /** * get the SignupMeeting object * * @return the SignupMeeting object */ public SignupMeeting getMeeting(); /** * get the Initiator's SignupTrackingItem object * * @return the Initiator's SignupTrackingItem object */ public SignupTrackingItem getInitiatorAllocationInfo(); /** * set the SignupMeeting object * * @param meeting * a SignupMeeting object */ public void setMeeting(SignupMeeting meeting); /** * get the Transfer Log Info for all users. It's for Log purpose * * @return a string value. */ public String getAllAttendeeTransferLogInfo(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy