All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.ordmag.ordini.cmis.CMISOrdiniAcqAttachment Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     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 .
 */

package it.cnr.contab.ordmag.ordini.cmis;

public enum CMISOrdiniAcqAttachment {
	
	SIGLA_ORDINI_ACQ_ATTACHMENT_STAMPA("D:ordini_acq_attachment:stampa"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_BANDO("D:ordini_acq_attachment:bando"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_DECISIONE_A_CONTRATTARE("D:ordini_acq_attachment:decisione_a_contrattare"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_DECRETO_NOMINA("D:ordini_acq_attachment:decreto_nomina"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_ATTO_ESITO_CONTROLLO("D:ordini_acq_attachment:atto_esito_controllo"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_ALLEGATO_GENERICO("D:ordini_acq_attachment:allegato_generico"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_CAPITOLATO("D:ordini_acq_attachment:capitolato"),
	SIGLA_ORDINI_ACQ_ATTACHMENT_DICHIARAZIONE_ALTRI_RAPPORTI("D:ordini_acq_attachment:dichiarazione_altri_rapporti");
	
	private final String value;

	private CMISOrdiniAcqAttachment(String value) {
		this.value = value;
	}

	public String value() {
		return value;
	}

	public static CMISOrdiniAcqAttachment fromValue(String v) {
		for (CMISOrdiniAcqAttachment c : CMISOrdiniAcqAttachment.values()) {
			if (c.value.equals(v)) {
				return c;
			}
		}
		throw new IllegalArgumentException(v);
	}	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy