51 lines
1.5 KiB
Java
51 lines
1.5 KiB
Java
/*******************************************************************************
|
|
* Imixs Workflow Technology
|
|
* Copyright (C) 2003, 2008 Imixs Software Solutions GmbH,
|
|
* http://www.imixs.com
|
|
*
|
|
* 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 can receive a copy of the GNU General Public
|
|
* License at http://www.gnu.org/licenses/gpl.html
|
|
*
|
|
* Contributors:
|
|
* Imixs Software Solutions GmbH - initial API and implementation
|
|
* Ralph Soika
|
|
*
|
|
*******************************************************************************/
|
|
package com.alexanderlogistics;
|
|
|
|
import org.imixs.workflow.office.config.ConfigController;
|
|
|
|
import jakarta.enterprise.context.ApplicationScoped;
|
|
import jakarta.inject.Named;
|
|
|
|
/**
|
|
* The Custom Config Controller for TAXES and Invoice typs
|
|
*
|
|
*
|
|
* @author rsoika
|
|
* @version 1.0
|
|
*/
|
|
|
|
@Named("aglConfigController")
|
|
// @RequestScoped
|
|
@ApplicationScoped
|
|
public class AGLConfigController extends ConfigController {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public AGLConfigController() {
|
|
super();
|
|
setName("AGL_CONFIGURATION");
|
|
}
|
|
|
|
}
|