grails-forge-api/src/main/java/org/grails/forge/api/GormImplDTO.java [79:97]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.name = name;
        this.description = messageSource.getMessage(MESSAGE_PREFIX + name + ".description", messageContext, name);

    }

    @Override
    @Schema(description = "A description of the GORM Implementation")
    public String getDescription() {
        return description;
    }

    @Override
    @Schema(description = "The name of the Gorm Implementation")
    @NonNull
    public String getName() {
        return name;
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



grails-forge-api/src/main/java/org/grails/forge/api/ServletImplDTO.java [69:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.name = name;
        this.description = messageSource.getMessage(MESSAGE_PREFIX + name + ".description", messageContext, name);
    }

    @Override
    @Schema(description = "A description of the GORM Implementation")
    public String getDescription() {
        return description;
    }

    @Override
    @Schema(description = "The name of the Gorm Implementation")
    @NonNull
    public String getName() {
        return name;
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



