001/*
002 * Syncany, www.syncany.org
003 * Copyright (C) 2011-2016 Philipp C. Heckel <philipp.heckel@gmail.com> 
004 *
005 * This program is free software: you can redistribute it and/or modify
006 * it under the terms of the GNU General Public License as published by
007 * the Free Software Foundation, either version 3 of the License, or
008 * (at your option) any later version.
009 *
010 * This program is distributed in the hope that it will be useful,
011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
013 * GNU General Public License for more details.
014 *
015 * You should have received a copy of the GNU General Public License
016 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
017 */
018package org.syncany.operations.daemon.messages;
019
020import java.util.ArrayList;
021import java.util.List;
022
023import org.simpleframework.xml.Element;
024import org.simpleframework.xml.ElementList;
025import org.syncany.database.DatabaseVersionHeader;
026import org.syncany.operations.daemon.messages.api.FolderResponse;
027
028public class GetDatabaseVersionHeadersFolderResponse extends FolderResponse {
029        @Element(required = true)
030        private String root;
031        
032        @ElementList(required = true, entry="databaseVersionHeader")
033        private ArrayList<DatabaseVersionHeader> databaseVersionHeaders;        
034        
035        public GetDatabaseVersionHeadersFolderResponse() {
036                // Nothing
037        }
038        
039        public GetDatabaseVersionHeadersFolderResponse(int requestId, String root, List<DatabaseVersionHeader> databaseVersionHeaders) {
040                super(200, requestId, null);
041                
042                this.root = root;
043                this.databaseVersionHeaders = new ArrayList<DatabaseVersionHeader>(databaseVersionHeaders);
044        }
045        
046        public ArrayList<DatabaseVersionHeader> getDatabaseVersionHeaders() {
047                return databaseVersionHeaders;
048        }
049}