/** * Java Zeitgeist API * Copyright (C) 2012 Matthias Hecker <http://apoc.cc/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package li.zeitgeist.api.error; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Vector; import li.zeitgeist.api.Item; /** * Container error class, thrown by upload/remote if an error occured. * * This contains the list of successfully created items (if multiple * items created) and the error that occured and stopped the process. */ public class CreateItemError extends ZeitgeistError { /** * Error that occured and stopped the creation. */ private ZeitgeistError error; /** * List of items that were successfully created up to this point. */ private List<Item> items; /** * Construct Error by message. * @param message */ public CreateItemError(String message) { super(message); } /** * Construct by json primitive map. * @param jsonObject */ public CreateItemError(Map<String, ?> jsonObject, String baseUrl) { super(jsonObject); this.error = new ZeitgeistError((Map<String, ?>)jsonObject.get("error")); this.items = new Vector<Item>(); for (Map<String, ?> itemObject : (ArrayList<Map<String, ?>>)jsonObject.get("items")) { this.items.add(new Item(itemObject, baseUrl)); } } /** * Error that occured and stopped the creation. * @return error object */ public ZeitgeistError getInnerError() { return error; } /** * List of items that were successfully created up to this point. * @return error object */ public List<Item> getItems() { return items; } }