mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-1809: Remove obsolete license information
The Spring framework is no longer used.
This commit is contained in:
@@ -1,8 +0,0 @@
|
|||||||
Spring Framework (https://spring.io/projects/spring-framework)
|
|
||||||
--------------------------------------------------------------
|
|
||||||
|
|
||||||
Version: 5.3.27
|
|
||||||
From: 'Spring' (https://spring.io/)
|
|
||||||
License(s):
|
|
||||||
Apache v2.0
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
org.springframework:spring-aop:jar:5.3.27
|
|
||||||
org.springframework:spring-beans:jar:5.3.27
|
|
||||||
org.springframework:spring-context:jar:5.3.27
|
|
||||||
org.springframework:spring-core:jar:5.3.27
|
|
||||||
org.springframework:spring-expression:jar:5.3.27
|
|
||||||
org.springframework:spring-jcl:jar:5.3.27
|
|
||||||
org.springframework:spring-web:jar:5.3.27
|
|
@@ -1,2 +0,0 @@
|
|||||||
This product includes software developed by Spring Security
|
|
||||||
Project (https://www.springframework.org/security).
|
|
@@ -1,8 +0,0 @@
|
|||||||
Spring Security (https://spring.io/projects/spring-security)
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
Version: 5.8.3
|
|
||||||
From: 'Spring' (https://spring.io/)
|
|
||||||
License(s):
|
|
||||||
Apache v2.0
|
|
||||||
|
|
@@ -1,3 +0,0 @@
|
|||||||
org.springframework.security:spring-security-core:jar:5.8.3
|
|
||||||
org.springframework.security:spring-security-crypto:jar:5.8.3
|
|
||||||
org.springframework.security:spring-security-web:jar:5.8.3
|
|
@@ -52,7 +52,7 @@ public class RequestValidationService {
|
|||||||
* @param confService
|
* @param confService
|
||||||
* The (mock) instance of ConfigurationService
|
* The (mock) instance of ConfigurationService
|
||||||
*/
|
*/
|
||||||
private RequestValidationService(ConfigurationService confService) {
|
public RequestValidationService(ConfigurationService confService) {
|
||||||
this.confService = confService;
|
this.confService = confService;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -61,7 +61,7 @@ public class RequestValidationServiceTest {
|
|||||||
*/
|
*/
|
||||||
private MockConfigurationService(String trustedNetworks) {
|
private MockConfigurationService(String trustedNetworks) {
|
||||||
if (trustedNetworks == null || trustedNetworks.isEmpty())
|
if (trustedNetworks == null || trustedNetworks.isEmpty())
|
||||||
trustedNetworks = Collections.<String>emptyList();
|
this.trustedNetworks = Collections.<String>emptyList();
|
||||||
else
|
else
|
||||||
this.trustedNetworks = Arrays.asList(Pattern.compile(",\\s*").split(trustedNetworks));
|
this.trustedNetworks = Arrays.asList(Pattern.compile(",\\s*").split(trustedNetworks));
|
||||||
}
|
}
|
||||||
@@ -372,7 +372,7 @@ public class RequestValidationServiceTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testNoTrustedNetwork() {
|
public void testNoTrustedNetwork() {
|
||||||
|
|
||||||
requestService = new RequestValidationService(new MockConfigurationService());
|
requestService = new RequestValidationService(new MockConfigurationService(null));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
assertTrue(requestService.isAuthenticationAllowed(mockHttpServletRequest("1.1.1.1")));
|
assertTrue(requestService.isAuthenticationAllowed(mockHttpServletRequest("1.1.1.1")));
|
||||||
|
Reference in New Issue
Block a user