public String getSchemaGroup()

in java/avro-converter/src/main/java/com/microsoft/azure/schemaregistry/kafka/connect/avro/AvroConverterConfig.java [101:106]


    public String getSchemaGroup() {
        if (!this.getProps().containsKey(SCHEMA_GROUP_CONFIG)) {
            throw new SchemaRegistryApacheAvroException("Schema group configuration property is required.");
        }
        return (String) this.getProps().get(SCHEMA_GROUP_CONFIG);
    }