package com.amazonaws.wafv2.webacl; import java.io.InputStream; import org.json.JSONObject; import org.json.JSONTokener; class Configuration extends BaseConfiguration { public Configuration() { super("aws-wafv2-webacl.json"); } public JSONObject resourceSchemaJSONObject() { return new JSONObject(new JSONTokener(this.getClass().getClassLoader().getResourceAsStream(schemaFilename))); } }