
com.belladati.sdk.impl.JsonViewImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-java Show documentation
Show all versions of sdk-java Show documentation
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