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

de.escalon.hypermedia.ResourceSupportVisitor Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package de.escalon.hypermedia;

import org.springframework.hateoas.Link;

import java.util.Collection;
import java.util.List;

/**
 * Created by Dietrich on 07.05.2016.
 */
public interface ResourceSupportVisitor {
    boolean visitLinks(List links);

    boolean visitEnterCollection(Collection collection);

    boolean visitLeaveCollection(Collection collection);

    boolean visitEnterProperty(String name, Class propertyType, Object value);

    boolean visitProperty(String name, Object value, Object o);

    boolean visitLeaveProperty(String name, Class propertyType, Object value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy