001package orgrdfs.sioc.ns; 002 003import java.util.List; 004 005/** 006 * A Role is a function of a UserAccount within a scope of a particular Forum, 007 * Site, etc. 008 */ 009@SuppressWarnings("javadoc") 010public interface Role 011{ 012 public List<String> getFunction_of(); 013 014 public void setFunction_of(final List<String> function_of); 015 016 public List<String> getHas_scope(); 017 018 public void setHas_scope(final List<String> has_scope); 019 020 public String getURI(); 021 022}