/******************************************************************************* * Copyright (c) 2013, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * - rbarkhouse - 29 January 2013 - 2.4 - Initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.sun.idresolver.collection; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; import java.util.concurrent.Callable; import javax.xml.bind.ValidationEventHandler; import org.eclipse.persistence.testing.jaxb.idresolver.collection.TestObject; import org.xml.sax.SAXException; public class NonELIDResolver extends com.sun.xml.bind.IDResolver { public boolean hitStartDocument = false; public boolean hitEndDocument = false; public boolean hitBind = false; public boolean hitResolve = false; public boolean eventHandlerNotNull = false; Map<String, Object> objects = new LinkedHashMap<String, Object>(); @Override public void startDocument(ValidationEventHandler eventHandler) throws SAXException { hitStartDocument = true; eventHandlerNotNull = (eventHandler != null); } @Override public void endDocument() throws SAXException { hitEndDocument = true; } @Override public void bind(String id, Object obj) throws SAXException { hitBind = true; objects.put(id, obj); } @Override public Callable<?> resolve(final String id, Class type) throws SAXException { hitResolve = true; return new Callable<Object>() { public Object call() { Object obj = objects.get(id); ((TestObject) obj).processed = true; return obj; } }; } }