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

io.katharsis.request.path.RelationshipsPath Maven / Gradle / Ivy

There is a newer version: 2.6.3
Show newest version
package io.katharsis.request.path;

/**
 * Represents a part of a path which relate a field of a resource e.g. for /resource/1/relationships/field the first
 * element will be an object of {@link ResourcePath} class and the second will be of {@link RelationshipsPath} type.
 *
 * {@link RelationshipsPath} can refer only to relationship fields.
 */
public class RelationshipsPath extends FieldPath {

    public RelationshipsPath(String elementName) {
        super(elementName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy