001/*
002 * Copyright (c) 2006-2012 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Nuxeo - initial API and implementation
011 *
012 */
013package org.nuxeo.ecm.platform.audit.api.document;
014
015import java.util.Date;
016
017/**
018 * Simple object used to store the additional parameters that are used to fetch the history for a DocumentModel
019 *
020 * @author <a href="mailto:tdelprat@nuxeo.com">Tiry</a>
021 */
022public class AdditionalDocumentAuditParams {
023
024    protected String targetUUID;
025
026    protected Date maxDate;
027
028    protected Long eventId;
029
030    public String getTargetUUID() {
031        return targetUUID;
032    }
033
034    public Date getMaxDate() {
035        return maxDate;
036    }
037
038    public Long getEventId() {
039        return eventId;
040    }
041}