From 350271d90af3be50d48858c2628c9f0771b5a988 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 24 Jun 2024 01:39:51 -0700 Subject: [PATCH] Fix access modifiers. --- src/System/Blob/size/System_Blob_size.cls | 14 +++++++------- src/System/Blob/toPdf/System_Blob_toPdf.cls | 14 +++++++------- src/System/Blob/toString/System_Blob_toString.cls | 14 +++++++------- src/System/Blob/valueOf/System_Blob_valueOf.cls | 14 +++++++------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/System/Blob/size/System_Blob_size.cls b/src/System/Blob/size/System_Blob_size.cls index ee4c86e..cf6aa6f 100644 --- a/src/System/Blob/size/System_Blob_size.cls +++ b/src/System/Blob/size/System_Blob_size.cls @@ -7,7 +7,7 @@ global class System_Blob_size { @InvocableMethod(label='System.Blob.size()' category='Flowpex System' iconName='slds:custom:custom79' description='Returns the number of characters in the Blob.') - public static List System_Blob_size (List requests) { + global static List System_Blob_size (List requests) { List responses = new List(); for (Request req : requests) { Response res = new Response(); @@ -21,18 +21,18 @@ global class System_Blob_size { return responses; } - public class Request { + global class Request { @InvocableVariable(required='true' label='Blob' description='') - public Blob blobToSize; + global Blob blobToSize; - public Request () {} - public Request (Blob b) { + global Request () {} + global Request (Blob b) { this.blobToSize = b; } } - public class Response { + global class Response { @InvocableVariable(label='Size' description='') - public Integer sizeOfBlob; + global Integer sizeOfBlob; } } \ No newline at end of file diff --git a/src/System/Blob/toPdf/System_Blob_toPdf.cls b/src/System/Blob/toPdf/System_Blob_toPdf.cls index 46d6eed..b7e11d9 100644 --- a/src/System/Blob/toPdf/System_Blob_toPdf.cls +++ b/src/System/Blob/toPdf/System_Blob_toPdf.cls @@ -7,7 +7,7 @@ global class System_Blob_toPdf { @InvocableMethod(label='System.Blob.toPdf()' category='Flowpex System' iconName='slds:standard:form' description='Creates a binary object out of the given string, encoding it as a PDF file.') - public static List System_Blob_toPdf (List requests) { + global static List System_Blob_toPdf (List requests) { List responses = new List(); for (Request req : requests) { Response res = new Response(); @@ -23,18 +23,18 @@ global class System_Blob_toPdf { return responses; } - public class Request { + global class Request { @InvocableVariable(required='true' label='String to PDF' description='') - public String stringToPdf; + global String stringToPdf; - public Request () {} - public Request (String s) { + global Request () {} + global Request (String s) { this.stringToPdf = s; } } - public class Response { + global class Response { @InvocableVariable(label='PDF' description='') - public Blob pdfOfString; + global Blob pdfOfString; } } \ No newline at end of file diff --git a/src/System/Blob/toString/System_Blob_toString.cls b/src/System/Blob/toString/System_Blob_toString.cls index 3d03dd8..8edb00f 100644 --- a/src/System/Blob/toString/System_Blob_toString.cls +++ b/src/System/Blob/toString/System_Blob_toString.cls @@ -7,7 +7,7 @@ global class System_Blob_toString { @InvocableMethod(label='System.Blob.toString()' category='Flowpex System' iconName='slds:standard:text' description='Casts the Blob into a String.') - public static List System_Blob_toString (List requests) { + global static List System_Blob_toString (List requests) { List responses = new List(); for (Request req : requests) { Response res = new Response(); @@ -21,18 +21,18 @@ global class System_Blob_toString { return responses; } - public class Request { + global class Request { @InvocableVariable(required='true' label='Blob' description='') - public Blob blobToString; + global Blob blobToString; - public Request () {} - public Request (Blob b) { + global Request () {} + global Request (Blob b) { this.blobToString = b; } } - public class Response { + global class Response { @InvocableVariable(label='String' description='') - public String stringOfBlob; + global String stringOfBlob; } } \ No newline at end of file diff --git a/src/System/Blob/valueOf/System_Blob_valueOf.cls b/src/System/Blob/valueOf/System_Blob_valueOf.cls index d5d500d..5092897 100644 --- a/src/System/Blob/valueOf/System_Blob_valueOf.cls +++ b/src/System/Blob/valueOf/System_Blob_valueOf.cls @@ -7,7 +7,7 @@ global class System_Blob_valueOf { @InvocableMethod(label='System.Blob.valueOf()' category='Flowpex System' iconName='slds:standard:default' description='Casts the specified String to a Blob.') - public static List System_Blob_valueOf (List requests) { + global static List System_Blob_valueOf (List requests) { List responses = new List(); for (Request req : requests) { Response res = new Response(); @@ -21,18 +21,18 @@ global class System_Blob_valueOf { return responses; } - public class Request { + global class Request { @InvocableVariable(required='true' label='String to blob' description='') - public String stringToBlob; + global String stringToBlob; - public Request () {} - public Request (String s) { + global Request () {} + global Request (String s) { this.stringToBlob = s; } } - public class Response { + global class Response { @InvocableVariable(label='Blob' description='') - public Blob blobOfString; + global Blob blobOfString; } } \ No newline at end of file -- 2.52.0