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 */
009public interface Role 
010{
011        public List<String> getFunction_of();
012        
013        public void setFunction_of( final List<String> function_of );
014
015        public List<String> getHas_scope();
016        
017        public void setHas_scope( final List<String> has_scope );
018
019        public String getURI();
020
021}
022