blob: f6ec0c99335f4deceeedf9a0d8e3971cf94c102e [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.xmlelementref;
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(namespace="myns", name="integer-root")
public JAXBElement<Integer> createIntegerRoot() {
return new JAXBElement<Integer>(new QName("myns", "integer-root"), Integer.class, 0);
}
public EmployeeSingle createEmployeeSingle() {
return new EmployeeSingle();
}
public EmployeeCollection createEmployeeCollection() {
return new EmployeeCollection();
}
}