RemoteStoreClientInfo.java

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


  21. import java.io.Serializable;

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

  30.     private static final long serialVersionUID = 1L;
  31.    
  32.     private String clientId;
  33.     private String clientDetails;
  34.    
  35.     private String organizationId;
  36.     private String organizationDetails;
  37.        
  38.     public String getClientId() {
  39.         return this.clientId;
  40.     }
  41.     public void setClientId(String clientId) {
  42.         this.clientId = clientId;
  43.     }
  44.     public String getClientDetails() {
  45.         return this.clientDetails;
  46.     }
  47.     public void setClientDetails(String clientDetails) {
  48.         this.clientDetails = clientDetails;
  49.     }
  50.    
  51.     public String getOrganizationId() {
  52.         return this.organizationId;
  53.     }
  54.     public void setOrganizationId(String organizationId) {
  55.         this.organizationId = organizationId;
  56.     }
  57.     public String getOrganizationDetails() {
  58.         return this.organizationDetails;
  59.     }
  60.     public void setOrganizationDetails(String organizationDetails) {
  61.         this.organizationDetails = organizationDetails;
  62.     }
  63.    
  64. }