no.ssb.lds.api.specification.SpecificationElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linked-data-store-persistence-provider-api Show documentation
Show all versions of linked-data-store-persistence-provider-api Show documentation
LinkedDataStore Persistence Provider API
package no.ssb.lds.api.specification;
import java.util.List;
import java.util.Map;
import java.util.Set;
public interface SpecificationElement {
String getName();
String getDescription();
SpecificationElement getParent();
SpecificationElementType getSpecificationElementType();
Set getJsonTypes();
List getValidators();
Set getRefTypes();
Map getProperties();
SpecificationElement getItems();
}