blob: 53d8550d0b0857acc09fd8c4003e97378f26ab23 [file] [log] [blame]
/*
* Copyright (c) 2013, 2021 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// - rbarkhouse - 29 January 2013 - 2.4 - Initial implementation
package org.eclipse.persistence.testing.jaxb.sun.idresolver.collection;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.concurrent.Callable;
import jakarta.xml.bind.ValidationEventHandler;
import org.eclipse.persistence.testing.jaxb.idresolver.collection.TestObject;
import org.xml.sax.SAXException;
public class NonELIDResolver extends org.glassfish.jaxb.runtime.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>() {
@Override
public Object call() {
Object obj = objects.get(id);
((TestObject) obj).processed = true;
return obj;
}
};
}
}