001/* 002 * (C) Copyright 2013 Nuxeo SA (http://nuxeo.com/) and others. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 * 016 * Contributors: 017 * Antoine Taillefer <ataillefer@nuxeo.com> 018 */ 019package org.nuxeo.drive.service; 020 021import java.io.Serializable; 022 023import org.nuxeo.drive.adapter.FileSystemItem; 024 025/** 026 * Representation of a file system item change. 027 * 028 * @author Antoine Taillefer 029 */ 030public interface FileSystemItemChange extends Serializable { 031 032 String getFileSystemItemId(); 033 034 void setFileSystemItemId(String fileSystemItemId); 035 036 String getFileSystemItemName(); 037 038 void setFileSystemItemName(String fileSystemItemName); 039 040 FileSystemItem getFileSystemItem(); 041 042 void setFileSystemItem(FileSystemItem fileSystemItem); 043 044 String getRepositoryId(); 045 046 void setRepositoryId(String repositoryId); 047 048 String getEventId(); 049 050 void setEventId(String eventId); 051 052 Long getEventDate(); 053 054 void setEventDate(Long eventDate); 055 056 String getDocUuid(); 057 058 void setDocUuid(String docUuid); 059 060}