blob: d320660aa5338d1fe68bc2b3aca4e3329de5c15e [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:
// Denise Smith - June 2013
package org.eclipse.persistence.testing.jaxb.xmlelementref;
import java.util.List;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlElementDecl;
import jakarta.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
@XmlRegistry
public class FooObjectFactory {
private final static QName _Things_QNAME = new QName("", "things");
public FooObjectFactory() {
}
@XmlElementDecl(namespace = "", name = "things")
public JAXBElement<List<byte[]>> createThings(List<byte[]> value) {
return new JAXBElement<List<byte[]>>(_Things_QNAME, ((Class) List.class), value);
}
}