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

com.belladati.sdk.impl.JsonViewImpl Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the implementation for standard Java.

The newest version!
package com.belladati.sdk.impl;

import java.util.Collection;

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

class JsonViewImpl extends ViewImpl implements JsonView {

	JsonViewImpl(BellaDatiServiceImpl service, JsonNode node) throws UnknownViewTypeException {
		super(service, node);
	}

	@Override
	public JsonNode loadContent(Filter... filters) {
		return (JsonNode) super.loadContent(filters);
	}

	@Override
	public JsonNode loadContent(Collection> filters) {
		return (JsonNode) super.loadContent(filters);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy