This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"hasReport": [ | |
{ | |
"type": "INFO", | |
"created": "2021-03-03T16:41:47.628Z", | |
"message": "Vendor package successfully received", | |
"event": { | |
"id": "5c98ca8b-b700-4639-9a1c-45c7a914eb0f", | |
"modelType": "WorkflowEvent" | |
} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workflow": { | |
"phase": "wwfl:ArticleProduction", | |
"id": "wwfl:ArticleStandardWorkflow", | |
"modelType": "Workflow" | |
}, | |
"payload": [ | |
{ | |
"requiresPayment": [ | |
{ |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@UtilityClass | |
public class XPathUtils { | |
public Map<String, Object> extractValue(@NonNull String json, @NonNull String xPath) { | |
Map<String, Object> jsonValue = U.fromXmlMap(json); | |
return extractValue(jsonValue, xPath); | |
} | |
@SuppressWarnings("unchecked") | |
public Map<String, Object> extractValue(@NonNull Map<String, Object> jsonMap, @NonNull String xPath) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Data.Entity; | |
using System.Data.Entity.Migrations; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using Shortener.Web.Contracts; | |
using Shortener.Web.Infrastructure; | |
namespace Shortener.Web.Repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.wiley.gts.bce.common.util.xml.impl; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Set; | |
import java.util.UUID; | |
import java.util.regex.Matcher; | |
import java.util.stream.Collectors; |