David KELLER

Results 5 comments of David KELLER

For example : ```java public static boolean containsWord(String text, String bookmark) { boolean contains = false; if (text.contains(bookmark)) { final Pattern pattern = Pattern.compile(Pattern.quote(bookmark) + "([^A-Za-z0-9]|$)"); final Matcher matcher =...

> I got this working by making a ModelPropertyBuilderPlugin that looks at the annotations: > > ```java > public void apply(final ModelPropertyContext context) { > final ModelPropertyBuilder builder = context.getBuilder();...

> ```java > ModelPropertyContext > ``` I propose this patch to use it with 3.0.0 ``` context.getSpecificationBuilder().vendorExtensions(vendorExtensions); // builder.extensions(vendorExtensions); ```

I Microsoft Power Automate you have boolean field, like "x-ms-notification-url", ie. https://docs.microsoft.com/fr-fr/connectors/custom-connectors/openapi-extensions#x-ms-notification-url So I propose this patch to be able to generate ``` url: type: string description: Define callback URL...