blob: 7ba4e1f83fc76d34f8c32e961bb7ded3829f9088 [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// mmacivor - June 05/2008 - 1.0 - Initial implementation
package org.eclipse.persistence.testing.jaxb.unmarshaller.autodetect;
import jakarta.xml.bind.annotation.*;
import jakarta.xml.bind.*;
import javax.xml.namespace.QName;
@XmlRegistry
public class TestObjectFactory {
@XmlElementDecl(name="root")
public JAXBElement<String> createRoot() {
return new JAXBElement<String>(new QName("root"), String.class, "");
}
@XmlElementDecl(name="integer-root")
public JAXBElement<Integer> createIntegerRoot() {
return new JAXBElement<Integer>(new QName("integer-root"), Integer.class, 0);
}
public EmployeeCollection createEmployeeCollection() {
return new EmployeeCollection();
}
}