com.somospnt.parametros.domain.MetadataParametro Maven / Gradle / Ivy
The newest version!
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package com.somospnt.parametros.domain;
public class MetadataParametro {
private String nombre;
private String descripcion;
private Class tipo;
public MetadataParametro(String nombre, String descripcion, Class tipo) {
this.nombre = nombre;
this.descripcion = descripcion;
this.tipo = tipo;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public String getDescripcion() {
return descripcion;
}
public void setDescripcion(String descripcion) {
this.descripcion = descripcion;
}
public Class getTipo() {
return tipo;
}
public void setTipo(Class tipo) {
this.tipo = tipo;
}
}