Uses of Class
org.europa.together.exceptions.JsonProcessingException
Packages that use JsonProcessingException
Package
Description
01 Application Layer: Implementation of the Application Logic.
02 Business Layer: Interfaces who implemented in the Application Layer
and used in the Service Layer.
-
Uses of JsonProcessingException in org.europa.together.application
Methods in org.europa.together.application that throw JsonProcessingExceptionModifier and TypeMethodDescriptionNimbusJwt.buildHMAC512SignedJws
(String jsonPayload) NimbusJwt.buildHMAC512SignedJwt
(String issuer, String subject, List<String> audience) GenericHbmDAO.deserializeJsonAsList
(String json) JacksonJsonTools.deserializeJsonAsList
(String json) GenericHbmDAO.deserializeJsonAsObject
(String json, Class<T> object) JacksonJsonTools.deserializeJsonAsObject
(String json, Class<T> object) NimbusJwt.parseHMAC512SingedJws
(String jws) NimbusJwt.parseHMAC512SingedJwt
(String jwt) GenericHbmDAO.serializeAsJson
(T object) JacksonJsonTools.serializeAsJsonObject
(T object) -
Uses of JsonProcessingException in org.europa.together.business
Methods in org.europa.together.business that throw JsonProcessingExceptionModifier and TypeMethodDescriptionJsonWebToken.buildHMAC512SignedJws
(String payload) JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures.JsonWebToken.buildHMAC512SignedJwt
(String issuer, String subject, List<String> audience) Create a JSON Web Token.GenericDAO.deserializeJsonAsList
(String json) Tries to create from a collection of JSON objects a list of enties.JsonTools.deserializeJsonAsList
(String json) Create (deserialize) a list of DomainObject >T< from a JSON String.GenericDAO.deserializeJsonAsObject
(String json, Class<T> object) Tried to create a entity object from a given JSON String.JsonTools.deserializeJsonAsObject
(String json, Class<T> object) Create (deserialize) a DomainObject >T< from a JSON String.JsonWebToken.parseHMAC512SingedJws
(String jws) JsonWebToken.parseHMAC512SingedJwt
(String jwt) GenericDAO.serializeAsJson
(T object) Check if the entity is not NULL and try to create a JSON object as String, otherwise the String will be empty.JsonTools.serializeAsJsonObject
(T object) Serialize an DomainObject >T< to an JSON String.