All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.ext.legacygraphqlapi.model.LegacyGraphQLUnknownModel Maven / Gradle / Ivy

package org.opentripplanner.ext.legacygraphqlapi.model;

/**
 * Class for unknown entities. Either no entity was defined or an entity that we don't support yet
 * in that context.
 */
public class LegacyGraphQLUnknownModel {

    /**
     * Description of the entity
     */
    private final String description;

    public LegacyGraphQLUnknownModel(String description) {
        this.description = description;
    }

    public String getDescription() {
        return description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy