ein Zitat
Ein Code-Block
| using log4net; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.AspNetCore.Routing; | |
| using Microsoft.Extensions.Configuration; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using Microsoft.Extensions.Hosting; | |
| using Oracle.ManagedDataAccess.Client; | |
| using Prometheus; | |
| using Sera.Common.AutoMapper; |
| /** | |
| * Schreibt die Inhalte eines JSONObject in eine HashMap | |
| * @param jsonObj | |
| * @return HashMap | |
| * @throws JSONException | |
| */ | |
| public static HashMap<String, Object> jsonObjectToHashMap(JSONObject jsonObj) throws JSONException { | |
| HashMap<String, Object> map = new HashMap<>(); | |
| Iterator keys = jsonObj.keys(); |