--- /dev/null
+/*
+ * jSite2 - Override.java -
+ * Copyright © 2008 David Roden
+ *
+ * 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 2 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, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+package net.pterodactylus.jsite.project;
+
+/**
+ * An override is used to enter other information about a file than the defaults
+ * would have yielded. It is also used to add redirects to a project.
+ *
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
+ * @version $Id$
+ */
+public class Override {
+
+ /** The insert override. */
+ private Boolean insert;
+
+ /** The override content type. */
+ private String contentType;
+
+ /** The redirect target. */
+ private String redirectTarget;
+
+ /**
+ * Returns the insert override.
+ *
+ * @return <code>true</code> if the entry should be inserted,
+ * <code>false</code> if it should not be inserted,
+ * <code>null</code> if the default should not be overridden
+ */
+ public Boolean isInsert() {
+ return insert;
+ }
+
+ /**
+ * Sets the insert override.
+ *
+ * @param insert
+ * <code>true</code> if the entry should be inserted,
+ * <code>false</code> if it should not be inserted,
+ * <code>null</code> if the default should not be overridden
+ */
+ public void setInsert(Boolean insert) {
+ this.insert = insert;
+ }
+
+ /**
+ * Returns the override content type.
+ *
+ * @return The override content type, or <code>null</code> to not override
+ * the default
+ */
+ public String getContentType() {
+ return contentType;
+ }
+
+ /**
+ * Sets the override content type.
+ *
+ * @param contentType
+ * The override content type, or <code>null</code> to not
+ * override the default
+ */
+ public void setContentType(String contentType) {
+ this.contentType = contentType;
+ }
+
+ /**
+ * Returns the target of a redirect.
+ *
+ * @return The target URI of the redirect, or <code>null</code> if no
+ * redirect should be created
+ */
+ public String getRedirectTarget() {
+ return redirectTarget;
+ }
+
+ /**
+ * Sets the target of a redirect.
+ *
+ * @param redirectTarget
+ * The target URI of the redirect, or <code>null</code> if no
+ * redirect should be created
+ */
+ public void setRedirectTarget(String redirectTarget) {
+ this.redirectTarget = redirectTarget;
+ }
+
+}