feat(jdk8): move files to new folder to avoid resources compiled.

This commit is contained in:
2025-09-07 15:25:52 +08:00
parent 3f0047bf6f
commit 8c35cfb1c0
17415 changed files with 217 additions and 213 deletions

View File

@@ -0,0 +1,268 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.attachment.AttachmentMarshaller;
import javax.xml.bind.attachment.AttachmentUnmarshaller;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import org.w3c.dom.Node;
import org.xml.sax.ContentHandler;
import com.sun.xml.internal.bind.api.JAXBRIContext;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
public class BridgeWrapper<T> implements XMLBridge<T> {
private JAXBRIContextWrapper parent;
private com.sun.xml.internal.bind.api.Bridge<T> bridge;
public BridgeWrapper(JAXBRIContextWrapper p, com.sun.xml.internal.bind.api.Bridge<T> b) {
parent = p;
bridge = b;
}
@Override
public BindingContext context() {
return parent;
}
com.sun.xml.internal.bind.api.Bridge getBridge() {
return bridge;
}
@Override
public boolean equals(Object obj) {
return bridge.equals(obj);
}
public JAXBRIContext getContext() {
return bridge.getContext();
}
@Override
public TypeInfo getTypeInfo() {
return parent.typeInfo(bridge.getTypeReference());
}
@Override
public int hashCode() {
return bridge.hashCode();
}
// public final void marshal(BridgeContext context, T object, ContentHandler contentHandler) throws JAXBException {
// bridge.marshal(context, object, contentHandler);
// }
//
// public final void marshal(BridgeContext context, T object, Node output) throws JAXBException {
// bridge.marshal(context, object, output);
// }
//
// public final void marshal(BridgeContext context, T object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
// bridge.marshal(context, object, output, nsContext);
// }
//
// public final void marshal(BridgeContext context, T object, Result result) throws JAXBException {
// bridge.marshal(context, object, result);
// }
//
// public final void marshal(BridgeContext context, T object, XMLStreamWriter output) throws JAXBException {
// bridge.marshal(context, object, output);
// }
public void marshal(Marshaller m, T object, ContentHandler contentHandler) throws JAXBException {
bridge.marshal(m, object, contentHandler);
}
public void marshal(Marshaller m, T object, Node output) throws JAXBException {
bridge.marshal(m, object, output);
}
public void marshal(Marshaller m, T object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
bridge.marshal(m, object, output, nsContext);
}
public void marshal(Marshaller m, T object, Result result) throws JAXBException {
bridge.marshal(m, object, result);
}
public void marshal(Marshaller m, T object, XMLStreamWriter output) throws JAXBException {
bridge.marshal(m, object, output);
// bridge.marshal(m, (T) convert(object), output);
}
@Override
public final void marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am) throws JAXBException {
// bridge.marshal((T) convert(object), contentHandler, am);
bridge.marshal(object, contentHandler, am);
}
// Object convert(Object o) {
// return (o instanceof WrapperComposite)? convertWrapper((WrapperComposite)o) : o;
// }
//
// static CompositeStructure convertWrapper(WrapperComposite w) {
// CompositeStructure cs = new CompositeStructure();
// cs.values = w.values;
// cs.bridges = new Bridge[w.bridges.length];
// for (int i = 0; i < cs.bridges.length; i++)
// cs.bridges[i] = ((BridgeWrapper)w.bridges[i]).getBridge();
// return cs;
// }
public void marshal(T object, ContentHandler contentHandler) throws JAXBException {
bridge.marshal(object, contentHandler);
// bridge.marshal((T) convert(object), contentHandler);
}
@Override
public void marshal(T object, Node output) throws JAXBException {
bridge.marshal(object, output);
// bridge.marshal((T) convert(object), output);
}
@Override
public void marshal(T object, OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am) throws JAXBException {
// bridge.marshal((T) convert(object), output, nsContext, am);
bridge.marshal(object, output, nsContext, am);
}
public void marshal(T object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
bridge.marshal(object, output, nsContext);
// bridge.marshal((T) convert(object), output, nsContext);
}
@Override
public final void marshal(T object, Result result) throws JAXBException {
bridge.marshal(object, result);
}
@Override
public final void marshal(T object, XMLStreamWriter output,
AttachmentMarshaller am) throws JAXBException {
bridge.marshal(object, output, am);
}
public final void marshal(T object, XMLStreamWriter output)
throws JAXBException {
bridge.marshal(object, output);
}
@Override
public String toString() {
return BridgeWrapper.class.getName() + " : " + bridge.toString();
}
// public final T unmarshal(BridgeContext context, InputStream in)
// throws JAXBException {
// return bridge.unmarshal(context, in);
// }
//
// public final T unmarshal(BridgeContext context, Node n)
// throws JAXBException {
// return bridge.unmarshal(context, n);
// }
//
// public final T unmarshal(BridgeContext context, Source in)
// throws JAXBException {
// return bridge.unmarshal(context, in);
// }
//
// public final T unmarshal(BridgeContext context, XMLStreamReader in)
// throws JAXBException {
// return bridge.unmarshal(context, in);
// }
@Override
public final T unmarshal(InputStream in) throws JAXBException {
return bridge.unmarshal(in);
}
@Override
public final T unmarshal(Node n, AttachmentUnmarshaller au)
throws JAXBException {
return bridge.unmarshal(n, au);
}
public final T unmarshal(Node n) throws JAXBException {
return bridge.unmarshal(n);
}
@Override
public final T unmarshal(Source in, AttachmentUnmarshaller au)
throws JAXBException {
return bridge.unmarshal(in, au);
}
public final T unmarshal(Source in) throws DatabindingException {
try {
return bridge.unmarshal(in);
} catch (JAXBException e) {
throw new DatabindingException(e);
}
}
public T unmarshal(Unmarshaller u, InputStream in) throws JAXBException {
return bridge.unmarshal(u, in);
}
public T unmarshal(Unmarshaller context, Node n) throws JAXBException {
return bridge.unmarshal(context, n);
}
public T unmarshal(Unmarshaller u, Source in) throws JAXBException {
return bridge.unmarshal(u, in);
}
public T unmarshal(Unmarshaller u, XMLStreamReader in) throws JAXBException {
return bridge.unmarshal(u, in);
}
@Override
public final T unmarshal(XMLStreamReader in, AttachmentUnmarshaller au)
throws JAXBException {
return bridge.unmarshal(in, au);
}
public final T unmarshal(XMLStreamReader in) throws JAXBException {
return bridge.unmarshal(in);
}
@Override
public boolean supportOutputStream() {
return true;
}
}

View File

@@ -0,0 +1,130 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.lang.reflect.Type;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import com.sun.xml.internal.bind.api.TypeReference;
import com.sun.xml.internal.bind.api.JAXBRIContext;
import com.sun.xml.internal.bind.api.CompositeStructure;
import com.sun.xml.internal.bind.v2.ContextFactory;
import com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader;
import com.sun.xml.internal.bind.v2.runtime.MarshallerImpl;
import com.sun.xml.internal.ws.developer.JAXBContextFactory;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.BindingContextFactory;
import com.sun.xml.internal.ws.spi.db.BindingInfo;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
import com.sun.xml.internal.ws.spi.db.WrapperComposite;
import java.util.Arrays;
/**
* JAXBRIContextFactory
*
* @author shih-chang.chen@oracle.com
*/
public class JAXBRIContextFactory extends BindingContextFactory {
@Override
public BindingContext newContext(JAXBContext context) {
return new JAXBRIContextWrapper((JAXBRIContext) context, null);
}
@Override
public BindingContext newContext(BindingInfo bi) {
Class[] classes = bi.contentClasses().toArray(new Class[bi.contentClasses().size()]);
for (int i = 0; i < classes.length; i++) {
if (WrapperComposite.class.equals(classes[i])) {
classes[i] = CompositeStructure.class;
}
}
Map<TypeInfo, TypeReference> typeInfoMappings = typeInfoMappings(bi.typeInfos());
Map<Class, Class> subclassReplacements = bi.subclassReplacements();
String defaultNamespaceRemap = bi.getDefaultNamespace();
Boolean c14nSupport = (Boolean) bi.properties().get("c14nSupport");
RuntimeAnnotationReader ar = (RuntimeAnnotationReader) bi.properties().get("com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader");
JAXBContextFactory jaxbContextFactory = (JAXBContextFactory) bi.properties().get(JAXBContextFactory.class.getName());
try {
JAXBRIContext context = (jaxbContextFactory != null)
? jaxbContextFactory.createJAXBContext(
bi.getSEIModel(),
toList(classes),
toList(typeInfoMappings.values()))
: ContextFactory.createContext(
classes, typeInfoMappings.values(),
subclassReplacements, defaultNamespaceRemap,
(c14nSupport != null) ? c14nSupport : false,
ar, false, false, false);
return new JAXBRIContextWrapper(context, typeInfoMappings);
} catch (Exception e) {
throw new DatabindingException(e);
}
}
private <T> List<T> toList(T[] a) {
List<T> l = new ArrayList<T>();
l.addAll(Arrays.asList(a));
return l;
}
private <T> List<T> toList(Collection<T> col) {
if (col instanceof List) {
return (List<T>) col;
}
List<T> l = new ArrayList<T>();
l.addAll(col);
return l;
}
private Map<TypeInfo, TypeReference> typeInfoMappings(Collection<TypeInfo> typeInfos) {
Map<TypeInfo, TypeReference> map = new java.util.HashMap<TypeInfo, TypeReference>();
for (TypeInfo ti : typeInfos) {
Type type = WrapperComposite.class.equals(ti.type) ? CompositeStructure.class : ti.type;
TypeReference tr = new TypeReference(ti.tagName, type, ti.annotations);
map.put(ti, tr);
}
return map;
}
@Override
protected BindingContext getContext(Marshaller m) {
return newContext(((MarshallerImpl) m).getContext());
}
@Override
protected boolean isFor(String str) {
return (str.equals("glassfish.jaxb")
|| str.equals(this.getClass().getName())
|| str.equals("com.sun.xml.internal.bind.v2.runtime"));
}
}

View File

@@ -0,0 +1,182 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.SchemaOutputResolver;
import javax.xml.bind.Unmarshaller;
import javax.xml.namespace.QName;
import com.sun.xml.internal.bind.api.JAXBRIContext;
import com.sun.xml.internal.bind.api.TypeReference;
import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfoSet;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
import com.sun.xml.internal.ws.spi.db.WrapperComposite;
class JAXBRIContextWrapper implements BindingContext {
private Map<TypeInfo, TypeReference> typeRefs;
private Map<TypeReference, TypeInfo> typeInfos;
private JAXBRIContext context;
JAXBRIContextWrapper(JAXBRIContext cxt, Map<TypeInfo, TypeReference> refs) {
context = cxt;
typeRefs = refs;
if (refs != null) {
typeInfos = new java.util.HashMap<TypeReference, TypeInfo>();
for (TypeInfo ti : refs.keySet()) {
typeInfos.put(typeRefs.get(ti), ti);
}
}
}
TypeReference typeReference(TypeInfo ti) {
return (typeRefs != null) ? typeRefs.get(ti) : null;
}
TypeInfo typeInfo(TypeReference tr) {
return (typeInfos != null) ? typeInfos.get(tr) : null;
}
@Override
public Marshaller createMarshaller() throws JAXBException {
return context.createMarshaller();
}
@Override
public Unmarshaller createUnmarshaller() throws JAXBException {
return context.createUnmarshaller();
}
@Override
public void generateSchema(SchemaOutputResolver outputResolver)
throws IOException {
context.generateSchema(outputResolver);
}
@Override
public String getBuildId() {
return context.getBuildId();
}
@Override
public QName getElementName(Class o) throws JAXBException {
return context.getElementName(o);
}
@Override
public QName getElementName(Object o) throws JAXBException {
return context.getElementName(o);
}
@Override
public <B, V> com.sun.xml.internal.ws.spi.db.PropertyAccessor<B, V> getElementPropertyAccessor(
Class<B> wrapperBean, String nsUri, String localName)
throws JAXBException {
return new RawAccessorWrapper(context.getElementPropertyAccessor(wrapperBean, nsUri, localName));
}
@Override
public List<String> getKnownNamespaceURIs() {
return context.getKnownNamespaceURIs();
}
public RuntimeTypeInfoSet getRuntimeTypeInfoSet() {
return context.getRuntimeTypeInfoSet();
}
public QName getTypeName(com.sun.xml.internal.bind.api.TypeReference tr) {
return context.getTypeName(tr);
}
@Override
public int hashCode() {
return context.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final JAXBRIContextWrapper other = (JAXBRIContextWrapper) obj;
if (this.context != other.context && (this.context == null || !this.context.equals(other.context))) {
return false;
}
return true;
}
@Override
public boolean hasSwaRef() {
return context.hasSwaRef();
}
@Override
public String toString() {
return JAXBRIContextWrapper.class.getName() + " : " + context.toString();
}
@Override
public XMLBridge createBridge(TypeInfo ti) {
TypeReference tr = typeRefs.get(ti);
com.sun.xml.internal.bind.api.Bridge b = context.createBridge(tr);
return WrapperComposite.class.equals(ti.type)
? new WrapperBridge(this, b)
: new BridgeWrapper(this, b);
}
@Override
public JAXBContext getJAXBContext() {
return context;
}
@Override
public QName getTypeName(TypeInfo ti) {
TypeReference tr = typeRefs.get(ti);
return context.getTypeName(tr);
}
@Override
public XMLBridge createFragmentBridge() {
return new MarshallerBridge((com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl) context);
}
@Override
public Object newWrapperInstace(Class<?> wrapperType)
throws InstantiationException, IllegalAccessException {
return wrapperType.newInstance();
}
}

View File

@@ -0,0 +1,132 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import org.w3c.dom.Node;
import org.xml.sax.ContentHandler;
import com.sun.istack.internal.NotNull;
import com.sun.xml.internal.bind.api.TypeReference;
import com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl;
import com.sun.xml.internal.bind.v2.runtime.MarshallerImpl;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
public class MarshallerBridge
extends com.sun.xml.internal.bind.api.Bridge
implements com.sun.xml.internal.ws.spi.db.XMLBridge {
protected MarshallerBridge(JAXBContextImpl context) {
super(context);
}
public void marshal(Marshaller m, Object object, XMLStreamWriter output) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,output);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
((MarshallerImpl)m).marshal(object,output,nsContext);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, Node output) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,output);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, ContentHandler contentHandler) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,contentHandler);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, Result result) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,result);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public Object unmarshal(Unmarshaller u, XMLStreamReader in) {
throw new UnsupportedOperationException();
}
public Object unmarshal(Unmarshaller u, Source in) {
throw new UnsupportedOperationException();
}
public Object unmarshal(Unmarshaller u, InputStream in) {
throw new UnsupportedOperationException();
}
public Object unmarshal(Unmarshaller u, Node n) {
throw new UnsupportedOperationException();
}
public TypeInfo getTypeInfo() {
throw new UnsupportedOperationException();
}
public TypeReference getTypeReference() {
throw new UnsupportedOperationException();
}
public BindingContext context() {
throw new UnsupportedOperationException();
}
public boolean supportOutputStream() {
return true;
}
}

View File

@@ -0,0 +1,74 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.PropertyAccessor;
import com.sun.xml.internal.bind.api.AccessorException;
import com.sun.xml.internal.bind.api.RawAccessor;
@SuppressWarnings("unchecked")
public class RawAccessorWrapper implements PropertyAccessor {
private RawAccessor accessor;
public RawAccessorWrapper(RawAccessor a) {
accessor = a;
}
@Override
public boolean equals(Object obj) {
return accessor.equals(obj);
}
@Override
public Object get(Object bean) throws DatabindingException {
try {
return accessor.get(bean);
} catch (AccessorException e) {
throw new DatabindingException(e);
}
}
@Override
public int hashCode() {
return accessor.hashCode();
}
@Override
public void set(Object bean, Object value) throws DatabindingException {
try {
accessor.set(bean, value);
} catch (AccessorException e) {
throw new DatabindingException(e);
}
}
@Override
public String toString() {
return accessor.toString();
}
}

View File

@@ -0,0 +1,157 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.bind.JAXBException;
import javax.xml.bind.attachment.AttachmentMarshaller;
import javax.xml.bind.attachment.AttachmentUnmarshaller;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import org.w3c.dom.Node;
import org.xml.sax.ContentHandler;
import com.sun.xml.internal.bind.api.Bridge;
import com.sun.xml.internal.bind.api.CompositeStructure;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
import com.sun.xml.internal.ws.spi.db.WrapperComposite;
public class WrapperBridge<T> implements XMLBridge<T> {
private JAXBRIContextWrapper parent;
private com.sun.xml.internal.bind.api.Bridge<T> bridge;
public WrapperBridge(JAXBRIContextWrapper p, com.sun.xml.internal.bind.api.Bridge<T> b) {
parent = p;
bridge = b;
}
@Override
public BindingContext context() {
return parent;
}
@Override
public boolean equals(Object obj) {
return bridge.equals(obj);
}
@Override
public TypeInfo getTypeInfo() {
return parent.typeInfo(bridge.getTypeReference());
}
@Override
public int hashCode() {
return bridge.hashCode();
}
static CompositeStructure convert(Object o) {
WrapperComposite w = (WrapperComposite) o;
CompositeStructure cs = new CompositeStructure();
cs.values = w.values;
cs.bridges = new Bridge[w.bridges.length];
for (int i = 0; i < cs.bridges.length; i++) {
cs.bridges[i] = ((BridgeWrapper) w.bridges[i]).getBridge();
}
return cs;
}
@Override
public final void marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am) throws JAXBException {
bridge.marshal((T) convert(object), contentHandler, am);
// bridge.marshal(object, contentHandler, am);
}
@Override
public void marshal(T object, Node output) throws JAXBException {
throw new UnsupportedOperationException();
// bridge.marshal(object, output);
// bridge.marshal((T) convert(object), output);
}
@Override
public void marshal(T object, OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am) throws JAXBException {
bridge.marshal((T) convert(object), output, nsContext, am);
}
@Override
public final void marshal(T object, Result result) throws JAXBException {
throw new UnsupportedOperationException();
// bridge.marshal(object, result);
}
@Override
public final void marshal(T object, XMLStreamWriter output, AttachmentMarshaller am) throws JAXBException {
bridge.marshal((T) convert(object), output, am);
}
@Override
public String toString() {
return BridgeWrapper.class.getName() + " : " + bridge.toString();
}
@Override
public final T unmarshal(InputStream in) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(in);
}
@Override
public final T unmarshal(Node n, AttachmentUnmarshaller au) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(n, au);
}
@Override
public final T unmarshal(Source in, AttachmentUnmarshaller au) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(in, au);
}
@Override
public final T unmarshal(XMLStreamReader in, AttachmentUnmarshaller au) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(in, au);
}
@Override
public boolean supportOutputStream() {
return true;
}
}