![JAR search and dependency download from the Maven repository](/logo.png)
nl.openweb.structured.data.schema.entities.AbstractEntity Maven / Gradle / Ivy
package nl.openweb.structured.data.schema.entities;
/**
* Created by Pim Schrama on 5/30/2016.
*/
public abstract class AbstractEntity implements StructuredData {
@Override
public abstract String getId();
@Override
public String getContext() {
return "http://schema.org";
}
@Override
public String getType() {
return getClass().getSimpleName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy