/* Index ECM Engine - A system for managing the capture (when created * or received), classification (cataloguing), storage, retrieval, * revision, sharing, reuse and disposition of documents. * * Copyright (C) 2008 Regione Piemonte * Copyright (C) 2008 Provincia di Torino * Copyright (C) 2008 Comune di Torino * * 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, * 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 should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ package it.doqui.index.ecmengine.integration.integrity.vo; /** * Value object (VO) per lo scambio dei dati della tabella dei job sul database. * * @author DoQui * */ public class IntegrityNodeVO { private Long id; private Long version; private String protocol; private String identifier; private String uuid; private String type_qname; private Long acl_id; /** * Costruttore predefinito. */ public IntegrityNodeVO() { super(); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getVersion() { return version; } public void setVersion(Long version) { this.version = version; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public String getIdentifier() { return identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getUuid() { return uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getType_qname() { return type_qname; } public void setType_qname(String type_qname) { this.type_qname = type_qname; } public Long getAcl_id() { return acl_id; } public void setAcl_id(Long acl_id) { this.acl_id = acl_id; } }