Removed ItEr75S13GenericCRUDController as it was not being used.

* Not being used at all
* And entry points were not properly defined, missing EntryPointsHandler
  in controller

FEA: ItEr75S13GenericCRUDController
This commit is contained in:
Manuel Rego Casasnovas 2011-07-13 12:07:51 +02:00
parent 09d2cbca2b
commit 6657fd90fa
2 changed files with 2 additions and 41 deletions

View file

@ -43,8 +43,8 @@ import org.zkoss.zul.Textbox;
* @author Susana Montes Pedreira <smontes@wirelessgalicia.com>
*/
@SuppressWarnings("serial")
public class ExternalCompanyCRUDController extends BaseCRUDController<ExternalCompany>
implements IExternalCompanyCRUDController {
public class ExternalCompanyCRUDController extends
BaseCRUDController<ExternalCompany> {
private static final org.apache.commons.logging.Log LOG = LogFactory
.getLog(ExternalCompanyCRUDController.class);

View file

@ -1,39 +0,0 @@
/*
* This file is part of NavalPlan
*
* Copyright (C) 2009-2010 Fundación para o Fomento da Calidade Industrial e
* Desenvolvemento Tecnolóxico de Galicia
* Copyright (C) 2010-2011 Igalia, S.L.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.navalplanner.web.externalcompanies;
import org.navalplanner.business.externalcompanies.entities.ExternalCompany;
import org.navalplanner.web.common.entrypoints.EntryPoint;
import org.navalplanner.web.common.entrypoints.EntryPoints;
@EntryPoints(page = "/externalcompanies/externalcompanies.zul", registerAs = "externalCompanyCRUD")
public interface IExternalCompanyCRUDController {
@EntryPoint("edit")
public abstract void goToEditForm(ExternalCompany company);
@EntryPoint("create")
public abstract void goToCreateForm();
@EntryPoint("list")
public abstract void goToList();
}