Removed unused and depcrecated package com.arsdigita.cms.workflow from ccm-cms

pull/28/head
Jens Pelzetter 2022-03-19 16:34:57 +01:00
parent 02956a8bd3
commit b5f9b9e114
4 changed files with 0 additions and 188 deletions

View File

@ -1,47 +0,0 @@
/*
* Copyright (C) 2001-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.cms.workflow;
/**
* Class for generating a URL to the Authoring kit given the ID of the
* ContentItem and the Task.
*
* @author Uday Mathur (umathur@arsdigita.com)
* @author <a href="mail:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
* */
public class AuthoringTaskURLGenerator implements TaskURLGenerator {
public AuthoringTaskURLGenerator() {}
/**
* Generates a Link to the Authoring Kit in the Item Management part
* of the CMS UI.
*
* @param itemId id of the item in question
* @param taskId this param is ignored.
* @return
* */
@Override
public String generateURL(final long itemId, final long taskId) {
throw new UnsupportedOperationException("ToDo");
// return ContentItemPage.getItemURL(itemId,
// ContentItemPage.AUTHORING_TAB);
}
}

View File

@ -1,50 +0,0 @@
/*
* Copyright (C) 2001-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.cms.workflow;
/**
* Generates a Link to the Deploy Task Panel under the Workflow Tab in the Item
* Management part of the CMS UI.
*
* @author Uday Mathur (umathur@arsdigita.com)
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*
*/
public class DeployTaskURLGenerator implements TaskURLGenerator {
public DeployTaskURLGenerator() {
}
/**
* Generates a Link to the Finish Task Panel under the Workflow Tab in the
* Item Management part of the CMS UI.
*
* @param itemId id of the item in question
* @param taskId id of the task to finish
* @return
*
*/
@Override
public String generateURL(final long itemId, final long taskId) {
// String url = ContentItemPage.getItemURL(itemId, ContentItemPage.PUBLISHING_TAB);
// return url;
throw new UnsupportedOperationException("ToDo");
}
}

View File

@ -1,57 +0,0 @@
/*
* Copyright (C) 2001-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.cms.workflow;
/**
* Class for generating a URL to the Authoring kit given the ID of the
* ContentItem and the Task. Eventually we may have a separate kit for editors,
* hence this is a separate class and has its own TaskType
*
* @author Uday Mathur (umathur@arsdigita.com)
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*
*/
public class EditingTaskURLGenerator implements TaskURLGenerator {
public EditingTaskURLGenerator() {
}
/**
* Generates a Link to the Workflow Tab in the Item Management part of the
* CMS UI.
*
* @param itemId id of the item in question
* @param taskId this param is ignored.
*
* @return
*
*/
@Override
public String generateURL(final long itemId, final long taskId) {
// final StringBuffer url = new StringBuffer
// (ContentItemPage.getItemURL(itemId, ContentItemPage.WORKFLOW_TAB));
//
// // XXX task, approve, and action were constants; restore them
// url.append("&action=approve&task=").append(taskId.toString());
//
// return url.toString();
throw new UnsupportedOperationException("ToDo");
}
}

View File

@ -1,34 +0,0 @@
/*
* Copyright (C) 2001-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.cms.workflow;
import java.math.BigDecimal;
/**
* Interface for generating a URL for a Task given the ID of the
* ContentItem and the Task.
*
* @author Uday Mathur (umathur@arsdigita.com)
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
* */
public interface TaskURLGenerator {
String generateURL(long item_id, long task_id);
}