From d1c4e0e4c71b679e6a43e905806839d1b01ebaf7 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 24 Jan 2023 16:15:51 +0000
Subject: [PATCH] GitHub Actions: update actions/checkout from v2 to v3 in Test jobs
---
src/main/java/org/keycloak/protocol/cas/utils/ServiceResponseMarshaller.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/keycloak/protocol/cas/utils/ServiceResponseMarshaller.java b/src/main/java/org/keycloak/protocol/cas/utils/ServiceResponseMarshaller.java
index a5aa6ac..d1b9d58 100644
--- a/src/main/java/org/keycloak/protocol/cas/utils/ServiceResponseMarshaller.java
+++ b/src/main/java/org/keycloak/protocol/cas/utils/ServiceResponseMarshaller.java
@@ -5,7 +5,7 @@
import com.fasterxml.jackson.core.util.DefaultIndenter;
import com.fasterxml.jackson.core.util.DefaultPrettyPrinter;
import com.fasterxml.jackson.databind.ObjectMapper;
-import org.keycloak.protocol.cas.representations.CasServiceResponse;
+import org.keycloak.protocol.cas.representations.CASServiceResponse;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
@@ -23,9 +23,9 @@
private ServiceResponseMarshaller() {
}
- public static String marshalXml(CasServiceResponse serviceResponse) {
+ public static String marshalXml(CASServiceResponse serviceResponse) {
try {
- JAXBContext jaxbContext = JAXBContext.newInstance(CasServiceResponse.class);
+ JAXBContext jaxbContext = JAXBContext.newInstance(CASServiceResponse.class);
Marshaller marshaller = jaxbContext.createMarshaller();
//disable xml header
marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
@@ -39,7 +39,7 @@
}
}
- public static String marshalJson(CasServiceResponse serviceResponse) {
+ public static String marshalJson(CASServiceResponse serviceResponse) {
ObjectMapper mapper = new ObjectMapper();
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
//Force newlines to be LF (default is system dependent)
--
Gitblit v1.9.1