dim.addContent(createField("dc","rights",null,null,rights));
dim.addContent(createField("dc","title",null,null,title));
}
else if (dso.getType() == Constants.SITE)
{
Site site = (Site) dso;
String identifier_uri = "hdl:" + site.getHandle();
String title = site.getName();
String url = site.getURL();
//FIXME: adding two URIs for now (site handle and URL), in case site isn't using handles
dim.addContent(createField("dc","identifier","uri",null,identifier_uri));
dim.addContent(createField("dc","identifier","uri",null,url));
dim.addContent(createField("dc","title",null,null,title));