com.github.anno4j.model.Agent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anno4j-core Show documentation
Show all versions of anno4j-core Show documentation
Read and write API for W3C Web Annotation Data Model (http://www.w3.org/TR/annotation-model/) and W3C Open Annotation Data Model (http://www.openannotation.org/spec/core/)
package com.github.anno4j.model;
import com.github.anno4j.model.impl.ResourceObject;
import com.github.anno4j.model.namespaces.FOAF;
import org.openrdf.annotations.Iri;
/**
* Conforms to http://www.w3.org/ns/prov#Agent
* An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity.
*/
public interface Agent extends ResourceObject {
/**
* Sets new The name of the agent.
* Refers to http://xmlns.com/foaf/spec/#term_name. The name of the agent.
* @param name New value of The name of the agent..
*/
@Iri(FOAF.NAME)
void setName(String name);
/**
* Gets The name of the agent..
* Refers to http://xmlns.com/foaf/spec/#term_name. The name of the agent.
*
* @return Value of The name of the agent..
*/
@Iri(FOAF.NAME)
String getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy