Skip to content

Commit

Permalink
Predisposto rilascio 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andreapoli committed Jul 19, 2020
1 parent ffae5d8 commit 55af3fa
Show file tree
Hide file tree
Showing 11 changed files with 67 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-07-20 Andrea Poli <[email protected]>

* Rilasciata versione 3.3.2

2020-07-17 Andrea Poli <[email protected]>

* [GovWayConsole]
Expand Down
2 changes: 1 addition & 1 deletion publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ maintenance:
name: GovWay
platforms:
- web
releaseDate: '2020-07-21'
releaseDate: '2020-07-20'
softwareType: standalone/web
softwareVersion: 3.3.2
url: 'https://github.com/link-it/govway'
Expand Down
Binary file modified resources/doc/pdf/GovWay-HowTo.pdf
Binary file not shown.
Binary file modified resources/doc/pdf/GovWay-ManualeInstallazione.pdf
Binary file not shown.
Binary file modified resources/doc/pdf/GovWay-ManualeMonitoraggio.pdf
Binary file not shown.
Binary file modified resources/doc/pdf/GovWay-ManualeUtente.pdf
Binary file not shown.
Binary file modified resources/doc/pdf/GovWay-ReleaseNotes.pdf
Binary file not shown.
Binary file modified resources/doc/pdf/GovWay-ScenariApplicativi.pdf
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
--- consolePassword.properties 2019-09-30 16:52:13.000000000 +0200
+++ consolePassword.properties 2020-07-19 20:19:07.363498282 +0200
@@ -32,3 +32,31 @@
# Tutti i caratteri utilizzati devono essere differenti
#passwordVerifier.allDistinctCharacters=true

+
+
+# -- Encrypt Password --
+
+# Tipo di cifratura (enum org.openspcoop2.utils.crypt.CryptType)
+passwordEncrypt.type=SHA2_BASED_UNIX_CRYPT_SHA512
+# In alternativa alla definizione di un tipo, è possibile fornire una classe che implementa l'interfaccia org.openspcoop2.utils.crypt.ICrypt
+#passwordEncrypt.customType=className
+
+# Charset utilizzato per le password
+#passwordEncrypt.charsetName=UTF-8
+
+# Parametri per il calcolo del 'salt'
+passwordEncrypt.salt.length=16
+passwordEncrypt.salt.secureRandom=true
+#passwordEncrypt.salt.secureRandomAlgorithm=SHA1PRNG
+
+# Parametri per il calcolo del Digest
+#passwordEncrypt.digestAlgorithm=
+#passwordEncrypt.iteration=intNumber
+
+# Output format
+#passwordEncrypt.base64Encoding=true/false
+#
+# Abilitare l'opzione seguente per poter autenticare:
+# - le utenze delle console esistenti memorizzate con la precedente cifratura MD5
+# - le password 'basic' degli applicativi/soggetti memorizzati in chiaro
+passwordEncrypt.backwardCompatibility=true
Binary file modified resources/scenari/scenari.zip
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2020 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/

package org.openspcoop2.web.ctrlstat.servlet;

/**
* OggettoDialogEnum
*
* @author Andrea Poli ([email protected])
* @author $Author$
* @version $Rev$, $Date$
*
*/
public enum OggettoDialogEnum {

UTENTE, APPLICATIVO, SOGGETTO, EROGAZIONE, CONNETTORE_MULTIPLO
Expand Down

0 comments on commit 55af3fa

Please sign in to comment.