refactor: organize constants
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20ServiceUtils.ts
index 7ff58444e0f8142332ab4f1be240b2577f260404..8d6ccdf5b3ff9bd2b54d100beb7e3144fab65b26 100644 (file)
@@ -1,5 +1,21 @@
-// Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
+import type { JSONSchemaType } from 'ajv';
+
+import { type JsonType, OCPPVersion } from '../../../types';
 import { OCPPServiceUtils } from '../OCPPServiceUtils';
 
-export class OCPP20ServiceUtils extends OCPPServiceUtils {}
+export class OCPP20ServiceUtils extends OCPPServiceUtils {
+  public static parseJsonSchemaFile<T extends JsonType>(
+    relativePath: string,
+    moduleName?: string,
+    methodName?: string
+  ): JSONSchemaType<T> {
+    return super.parseJsonSchemaFile<T>(
+      relativePath,
+      OCPPVersion.VERSION_20,
+      moduleName,
+      methodName
+    );
+  }
+}