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

com.belladati.sdk.view.JsonView Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.

There is a newer version: 0.9.15.1
Show newest version
package com.belladati.sdk.view;

import java.util.Collection;

import com.belladati.sdk.filter.Filter;
import com.fasterxml.jackson.databind.JsonNode;

/**
 * A view displaying JSON content.
 * 
 * @author Chris Hennigfeld
 */
public interface JsonView extends View {

	/**
	 * Loads the JSON representation of this view.
	 * 
	 * @param filters optional filters to use when loading the view
	 * @return the JSON representation of this view
	 */
	JsonNode loadContent(Filter... filters);

	/**
	 * Loads the JSON representation of this view.
	 * 
	 * @param filters filters to use when loading the view
	 * @return the JSON representation of this view
	 */
	JsonNode loadContent(Collection> filters);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy