001/*
002 * (C) Copyright 2013 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl-2.1.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Antoine Taillefer <ataillefer@nuxeo.com>
016 */
017package org.nuxeo.drive.service;
018
019import java.io.Serializable;
020
021import org.nuxeo.drive.adapter.FileSystemItem;
022
023/**
024 * Representation of a file system item change.
025 *
026 * @author Antoine Taillefer
027 */
028public interface FileSystemItemChange extends Serializable {
029
030    String getFileSystemItemId();
031
032    void setFileSystemItemId(String fileSystemItemId);
033
034    String getFileSystemItemName();
035
036    void setFileSystemItemName(String fileSystemItemName);
037
038    FileSystemItem getFileSystemItem();
039
040    void setFileSystemItem(FileSystemItem fileSystemItem);
041
042    String getRepositoryId();
043
044    void setRepositoryId(String repositoryId);
045
046    String getEventId();
047
048    void setEventId(String eventId);
049
050    Long getEventDate();
051
052    void setEventDate(Long eventDate);
053
054    String getDocUuid();
055
056    void setDocUuid(String docUuid);
057
058}