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 <[email protected]> 018 */ 019package org.nuxeo.drive.service; 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 { 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}