Java tutorial
/* * Metadata Editor * * Metadata Editor - Rich internet application for editing metadata. * Copyright (C) 2011 Jiri Kremser (kremser@mzk.cz) * Moravian Library in Brno * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * */ package cz.mzk.editor.server.newObject; import org.dom4j.Element; import org.dom4j.Namespace; import org.dom4j.QName; import cz.mzk.editor.client.util.Constants; import cz.mzk.editor.client.util.Constants.DATASTREAM_CONTROLGROUP; import cz.mzk.editor.client.util.Constants.DATASTREAM_ID; import cz.mzk.editor.server.fedora.utils.FoxmlUtils; import cz.mzk.editor.shared.domain.DigitalObjectModel; import cz.mzk.editor.shared.rpc.NewDigitalObject; /** * @author Jiri Kremser * @version 31.10.2011 */ public class PageBuilder extends FoxmlBuilder { /** * @param object */ public PageBuilder(NewDigitalObject object) { super(object); } /** * {@inheritDoc} */ @Override protected void decorateMODSStream() { String pageLabel = getName(); Element modsCollection = FoxmlUtils.createModsCollectionEl(); Namespace modsNs = Namespaces.mods; Element mods = modsCollection.addElement(new QName("mods", modsNs)); mods.addAttribute("version", "3.3"); Element idUrn = mods.addElement(new QName("identifier", modsNs)); idUrn.addAttribute("type", "urn"); idUrn.addText(getUuid()); Element idSici = mods.addElement(new QName("identifier", modsNs)); idSici.addAttribute("type", "sici"); Element titleInfo = mods.addElement(new QName("titleInfo", modsNs)); Element title = titleInfo.addElement(new QName("title", modsNs)); title.addText(pageLabel); Element typeOfResource = mods.addElement(new QName("typeOfResource", modsNs)); typeOfResource.addText("text"); Element part = mods.addElement(new QName("part", modsNs)); String resolvedPageType = Constants.PAGE_TYPES.MAP.get(getType()); part.addAttribute("type", resolvedPageType == null ? "NormalPage" : resolvedPageType); //pageNumber Element detail = part.addElement(new QName("detail", modsNs)); detail.addAttribute("type", Constants.MODS_PART_DETAIL_PAGE_NUMBER); Element number = null; if (pageLabel.contains(Constants.TWO_PAGES_SEPARATOR)) { String[] splitedLabel = pageLabel.split("\\" + Constants.TWO_PAGES_SEPARATOR); number = detail.addElement(new QName("number", modsNs)); number.addText(splitedLabel[0]); number = detail.addElement(new QName("number", modsNs)); number.addText(splitedLabel[1]); } else { number = detail.addElement(new QName("number", modsNs)); number.addText(pageLabel); } //page index detail = part.addElement(new QName("detail", modsNs)); detail.addAttribute("type", "pageIndex"); number = detail.addElement(new QName("number", modsNs)); number.addText(String.valueOf(getPageIndex())); addLocation(mods.addElement(new QName("location", modsNs))); addIdentifierUuid(mods, getUuid()); appendDatastream(DATASTREAM_CONTROLGROUP.X, DATASTREAM_ID.BIBLIO_MODS, modsCollection, null, null); } /** * {@inheritDoc} */ @Override protected void decorateRelsExtStream() { super.decorateRelsExtStream(); Element description = FoxmlUtils.findDescriptionElement(getRelsExtXmlContent()); Element url = description.addElement(new QName("tiles-url", Namespaces.kramerius)); url.addText(getImageUrl()); } /** * {@inheritDoc} */ @Override protected DigitalObjectModel getModel() { return DigitalObjectModel.PAGE; } /** * {@inheritDoc} */ @Override protected void createOtherStreams() { appendDatastream(DATASTREAM_CONTROLGROUP.R, DATASTREAM_ID.IMG_FULL, null, "URL", getImageUrl() + "/big.jpg"); appendDatastream(DATASTREAM_CONTROLGROUP.R, DATASTREAM_ID.IMG_THUMB, null, "URL", getImageUrl() + "/preview.jpg"); } }