001package orgrdfs.sioc.ns;
002
003import java.util.List;
004
005/**
006 * A Site can be the location of an online community or set of communities, with
007 * UserAccounts and Usergroups creating Items in a set of Containers. It can be
008 * thought of as a web-accessible data Space.
009 */
010public interface Site 
011        extends Space
012{
013        public List<orgrdfs.sioc.ns.Forum> getHost_of();
014        
015        public void setHost_of( final List<orgrdfs.sioc.ns.Forum> host_of );
016
017        public List<orgrdfs.sioc.ns.UserAccount> getHas_administrator();
018        
019        public void setHas_administrator( final List<orgrdfs.sioc.ns.UserAccount> has_administrator );
020
021        @Override
022        public String getURI();
023
024}
025