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