CredenzialiMittente.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.core.transazioni.utils;

  21. import java.io.Serializable;

  22. import org.openspcoop2.core.transazioni.CredenzialeMittente;

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

  31.     /**
  32.      *
  33.      */
  34.     private static final long serialVersionUID = 1L;

  35.     private CredenzialeMittente trasporto;
  36.    
  37.     private CredenzialeMittente tokenIssuer;
  38.     private CredenzialeMittente tokenClientId;
  39.     private CredenzialeMittente tokenSubject;
  40.     private CredenzialeMittente tokenUsername;
  41.     private CredenzialeMittente tokenEMail;
  42.    
  43.     private CredenzialeMittente tokenPdndClientJson;
  44.     private CredenzialeMittente tokenPdndOrganizationJson;
  45.     private CredenzialeMittente tokenPdndOrganizationName;
  46.    
  47.     public CredenzialeMittente getTrasporto() {
  48.         return this.trasporto;
  49.     }
  50.     public void setTrasporto(CredenzialeMittente trasporto) {
  51.         this.trasporto = trasporto;
  52.     }
  53.    
  54.     public CredenzialeMittente getTokenIssuer() {
  55.         return this.tokenIssuer;
  56.     }
  57.     public void setTokenIssuer(CredenzialeMittente tokenIssuer) {
  58.         this.tokenIssuer = tokenIssuer;
  59.     }
  60.     public CredenzialeMittente getTokenClientId() {
  61.         return this.tokenClientId;
  62.     }
  63.     public void setTokenClientId(CredenzialeMittente tokenClientId) {
  64.         this.tokenClientId = tokenClientId;
  65.     }
  66.     public CredenzialeMittente getTokenSubject() {
  67.         return this.tokenSubject;
  68.     }
  69.     public void setTokenSubject(CredenzialeMittente tokenSubject) {
  70.         this.tokenSubject = tokenSubject;
  71.     }
  72.     public CredenzialeMittente getTokenUsername() {
  73.         return this.tokenUsername;
  74.     }
  75.     public void setTokenUsername(CredenzialeMittente tokenUsername) {
  76.         this.tokenUsername = tokenUsername;
  77.     }
  78.     public CredenzialeMittente getTokenEMail() {
  79.         return this.tokenEMail;
  80.     }
  81.     public void setTokenEMail(CredenzialeMittente tokenEMail) {
  82.         this.tokenEMail = tokenEMail;
  83.     }
  84.    
  85.     public CredenzialeMittente getTokenPdndClientJson() {
  86.         return this.tokenPdndClientJson;
  87.     }
  88.     public void setTokenPdndClientJson(CredenzialeMittente tokenPdndClientJson) {
  89.         this.tokenPdndClientJson = tokenPdndClientJson;
  90.     }
  91.     public CredenzialeMittente getTokenPdndOrganizationJson() {
  92.         return this.tokenPdndOrganizationJson;
  93.     }
  94.     public void setTokenPdndOrganizationJson(CredenzialeMittente tokenPdndOrganizationJson) {
  95.         this.tokenPdndOrganizationJson = tokenPdndOrganizationJson;
  96.     }
  97.     public CredenzialeMittente getTokenPdndOrganizationName() {
  98.         return this.tokenPdndOrganizationName;
  99.     }
  100.     public void setTokenPdndOrganizationName(CredenzialeMittente tokenPdndOrganizationName) {
  101.         this.tokenPdndOrganizationName = tokenPdndOrganizationName;
  102.     }
  103. }