RemoteStoreKeyEntry.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package org.openspcoop2.pdd.core.keystore;

  21. import java.util.Date;

  22. /**
  23.  * RemoteStoreKeyEntry
  24.  *
  25.  * @author Poli Andrea (apoli@link.it)
  26.  * @author $Author$
  27.  * @version $Rev$, $Date$
  28.  */
  29. public class RemoteStoreKeyEntry {

  30.     private long id;
  31.     private long idRemoteStore;
  32.     private Date dataRegistrazione;
  33.    
  34.     private String kid;
  35.     private byte[] contentKey;
  36.     private Date dataAggiornamento;
  37.    
  38.     private String clientId;
  39.     private String clientDetails;
  40.     private String organizationDetails;
  41.     private Date clientDataAggiornamento;
  42.    
  43.     private String organizationName;
  44.     private String organizationExternalOrigin;
  45.     private String organizationExternalId;
  46.     private String organizationCategory;
  47.    
  48.     public long getId() {
  49.         return this.id;
  50.     }
  51.     public void setId(long id) {
  52.         this.id = id;
  53.     }
  54.     public long getIdRemoteStore() {
  55.         return this.idRemoteStore;
  56.     }
  57.     public void setIdRemoteStore(long idRemoteStore) {
  58.         this.idRemoteStore = idRemoteStore;
  59.     }
  60.     public Date getDataRegistrazione() {
  61.         return this.dataRegistrazione;
  62.     }
  63.     public void setDataRegistrazione(Date dataRegistrazione) {
  64.         this.dataRegistrazione = dataRegistrazione;
  65.     }
  66.     public String getKid() {
  67.         return this.kid;
  68.     }
  69.     public void setKid(String kid) {
  70.         this.kid = kid;
  71.     }
  72.     public byte[] getContentKey() {
  73.         return this.contentKey;
  74.     }
  75.     public void setContentKey(byte[] contentKey) {
  76.         this.contentKey = contentKey;
  77.     }
  78.     public Date getDataAggiornamento() {
  79.         return this.dataAggiornamento;
  80.     }
  81.     public void setDataAggiornamento(Date dataAggiornamento) {
  82.         this.dataAggiornamento = dataAggiornamento;
  83.     }
  84.     public String getClientId() {
  85.         return this.clientId;
  86.     }
  87.     public void setClientId(String clientId) {
  88.         this.clientId = clientId;
  89.     }
  90.     public String getClientDetails() {
  91.         return this.clientDetails;
  92.     }
  93.     public void setClientDetails(String clientDetails) {
  94.         this.clientDetails = clientDetails;
  95.     }
  96.     public String getOrganizationDetails() {
  97.         return this.organizationDetails;
  98.     }
  99.     public void setOrganizationDetails(String organizationDetails) {
  100.         this.organizationDetails = organizationDetails;
  101.     }
  102.     public Date getClientDataAggiornamento() {
  103.         return this.clientDataAggiornamento;
  104.     }
  105.     public void setClientDataAggiornamento(Date clientDataAggiornamento) {
  106.         this.clientDataAggiornamento = clientDataAggiornamento;
  107.     }

  108.     public String getOrganizationName() {
  109.         return this.organizationName;
  110.     }
  111.     public void setOrganizationName(String organizationName) {
  112.         this.organizationName = organizationName;
  113.     }
  114.     public String getOrganizationExternalOrigin() {
  115.         return this.organizationExternalOrigin;
  116.     }
  117.     public void setOrganizationExternalOrigin(String organizationExternalOrigin) {
  118.         this.organizationExternalOrigin = organizationExternalOrigin;
  119.     }
  120.     public String getOrganizationExternalId() {
  121.         return this.organizationExternalId;
  122.     }
  123.     public void setOrganizationExternalId(String organizationExternalId) {
  124.         this.organizationExternalId = organizationExternalId;
  125.     }
  126.     public String getOrganizationCategory() {
  127.         return this.organizationCategory;
  128.     }
  129.     public void setOrganizationCategory(String organizationCategory) {
  130.         this.organizationCategory = organizationCategory;
  131.     }
  132. }