/***************************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ****************************************************************************/ package org.apache.padaf.xmpbox.parser; import javax.xml.namespace.QName; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import org.apache.padaf.xmpbox.XMPMetadata; import org.apache.padaf.xmpbox.type.ComplexPropertyContainer; import org.apache.padaf.xmpbox.type.JobType; public class JobParser extends StructuredPropertyParser { public JobParser (XMPDocumentBuilder builder) { super(builder); } public void parse(XMPMetadata metadata, QName altName, ComplexPropertyContainer container) throws XmpUnexpectedTypeException, XmpParsingException, XMLStreamException, XmpUnknownPropertyTypeException, XmpPropertyFormatException { builder.expectCurrentLocalName("li"); JobType job = new JobType(metadata, altName.getPrefix(), altName.getLocalPart()); int elmtType = builder.reader.get().nextTag(); QName eltName; String eltContent; while (!((elmtType == XMLStreamReader.END_ELEMENT) && builder.reader.get() .getName().getLocalPart().equals("li"))) { eltName = builder.reader.get().getName(); eltContent = builder.reader.get().getElementText(); if (eltName.getLocalPart().equals(JobType.ID)) { job.setId(eltName.getPrefix(), eltContent); } else if (eltName.getLocalPart().equals(JobType.NAME)) { job.setName(eltName.getPrefix(),eltContent); } else if (eltName.getLocalPart().equals(JobType.URL)) { job.setUrl(eltName.getPrefix(), eltContent); } else { throw new XmpParsingException( "Unknown property name for a job element : " + eltName.getLocalPart()); } elmtType = builder.reader.get().nextTag(); } container.addProperty(job); } }