ConfigurazioneStatisticaFieldConverter.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.monitor.engine.config.statistiche.dao.jdbc.converter;
import org.openspcoop2.generic_project.beans.IField;
import org.openspcoop2.generic_project.beans.IModel;
import org.openspcoop2.generic_project.exception.ExpressionException;
import org.openspcoop2.generic_project.expression.impl.sql.AbstractSQLFieldConverter;
import org.openspcoop2.utils.TipiDatabase;
import org.openspcoop2.monitor.engine.config.statistiche.ConfigurazioneStatistica;
/**
* ConfigurazioneStatisticaFieldConverter
*
* @author Poli Andrea (poli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class ConfigurazioneStatisticaFieldConverter extends AbstractSQLFieldConverter {
private TipiDatabase databaseType;
public ConfigurazioneStatisticaFieldConverter(String databaseType){
this.databaseType = TipiDatabase.toEnumConstant(databaseType);
}
public ConfigurazioneStatisticaFieldConverter(TipiDatabase databaseType){
this.databaseType = databaseType;
}
@Override
public IModel<?> getRootModel() throws ExpressionException {
return ConfigurazioneStatistica.model();
}
@Override
public TipiDatabase getDatabaseType() throws ExpressionException {
return this.databaseType;
}
@Override
public String toColumn(IField field,boolean returnAlias,boolean appendTablePrefix) throws ExpressionException {
// In the case of columns with alias, using parameter returnAlias,
// it is possible to drive the choice whether to return only the alias or
// the full definition of the column containing the alias
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_STATISTICA)){
if(appendTablePrefix){
return this.toAliasTable(field)+".id";
}else{
return "id";
}
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.ACCORDO)){
if(appendTablePrefix){
return this.toAliasTable(field)+".accordo";
}else{
return "accordo";
}
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.TIPO_SOGGETTO_REFERENTE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".tipo_soggetto_referente";
}else{
return "tipo_soggetto_referente";
}
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.NOME_SOGGETTO_REFERENTE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".nome_soggetto_referente";
}else{
return "nome_soggetto_referente";
}
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.VERSIONE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".versione";
}else{
return "versione";
}
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.SERVIZIO)){
if(appendTablePrefix){
return this.toAliasTable(field)+".servizio";
}else{
return "servizio";
}
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.AZIONE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".azione";
}else{
return "azione";
}
}
if(field.equals(ConfigurazioneStatistica.model().ENABLED)){
if(appendTablePrefix){
return this.toAliasTable(field)+".enabled";
}else{
return "enabled";
}
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.TIPO)){
if(appendTablePrefix){
return this.toAliasTable(field)+".tipo";
}else{
return "tipo";
}
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.CLASS_NAME)){
if(appendTablePrefix){
return this.toAliasTable(field)+".class_name";
}else{
return "class_name";
}
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.DESCRIZIONE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".descrizione";
}else{
return "descrizione";
}
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.LABEL)){
if(appendTablePrefix){
return this.toAliasTable(field)+".label";
}else{
return "label";
}
}
if(field.equals(ConfigurazioneStatistica.model().LABEL)){
if(appendTablePrefix){
return this.toAliasTable(field)+".label";
}else{
return "label";
}
}
return super.toColumn(field,returnAlias,appendTablePrefix);
}
@Override
public String toTable(IField field,boolean returnAlias) throws ExpressionException {
// In the case of table with alias, using parameter returnAlias,
// it is possible to drive the choice whether to return only the alias or
// the full definition of the table containing the alias
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_STATISTICA)){
return this.toTable(ConfigurazioneStatistica.model(), returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.ACCORDO)){
return this.toTable(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.TIPO_SOGGETTO_REFERENTE)){
return this.toTable(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.NOME_SOGGETTO_REFERENTE)){
return this.toTable(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.VERSIONE)){
return this.toTable(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO.SERVIZIO)){
return this.toTable(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.AZIONE)){
return this.toTable(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().ENABLED)){
return this.toTable(ConfigurazioneStatistica.model(), returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.TIPO)){
return this.toTable(ConfigurazioneStatistica.model().PLUGIN, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.CLASS_NAME)){
return this.toTable(ConfigurazioneStatistica.model().PLUGIN, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.DESCRIZIONE)){
return this.toTable(ConfigurazioneStatistica.model().PLUGIN, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().PLUGIN.LABEL)){
return this.toTable(ConfigurazioneStatistica.model().PLUGIN, returnAlias);
}
if(field.equals(ConfigurazioneStatistica.model().LABEL)){
return this.toTable(ConfigurazioneStatistica.model(), returnAlias);
}
return super.toTable(field,returnAlias);
}
@Override
public String toTable(IModel<?> model,boolean returnAlias) throws ExpressionException {
// In the case of table with alias, using parameter returnAlias,
// it is possible to drive the choice whether to return only the alias or
// the full definition of the table containing the alias
if(model.equals(ConfigurazioneStatistica.model())){
return "stat_personalizzate";
}
if(model.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE)){
return "plugins_conf_azioni";
}
if(model.equals(ConfigurazioneStatistica.model().ID_CONFIGURAZIONE_SERVIZIO_AZIONE.ID_CONFIGURAZIONE_SERVIZIO)){
return "plugins_conf_servizi";
}
if(model.equals(ConfigurazioneStatistica.model().PLUGIN)){
return "plugins";
}
return super.toTable(model,returnAlias);
}
}