/* * Copyright (C) 2003-2004 Red Hat Inc. All Rights Reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ package com.arsdigita.simplesurvey; import com.arsdigita.web.Application; import com.arsdigita.persistence.OID; import com.arsdigita.persistence.DataObject; import com.arsdigita.domain.DataObjectNotFoundException; /** * A placeholder app just in existance because you * can't work with Application / ApplicationType classes * directly. */ public class SimpleSurvey extends Application { public static final String BASE_DATA_OBJECT_TYPE = "com.arsdigita.simplesurvey.SimpleSurvey"; public SimpleSurvey(DataObject obj) { super(obj); } public SimpleSurvey(OID oid) throws DataObjectNotFoundException { super(oid); } // /* // * Application specific method only required if installed in its own // * web application context // */ // public String getContextPath() { // return "/ccm-simplesurvey"; // } /** * Returns the path name of the location of the applications servlet/JSP. * * The method overwrites the super class to provide an application specific * location for servlets/JSP. This is necessary if you whish to install the * module (application) along with others in one context. If you install the * module into its own context (no longer recommended for versions newer * than 1.0.4) you may use a standard location. * * Usually it is a symbolic name/path, which will be mapped in the web.xml * to the real location in the file system. Example: * * simplesurvey-files * com.arsdigita.web.ApplicationFileServlet * * template-path * /templates/ccm-simplesurvey * * * * * simplesurvey-files * /ccm-simplesurvey/files/* * * * @return path name to the applications servlet/JSP */ public String getServletPath() { // sufficient if installed into its own web appl. context (ccm-simplesurvey) // return "/files"; return "/simplesurvey/files"; } }