com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb-impl Show documentation
Show all versions of jaxb-impl Show documentation
Old JAXB Runtime module. Contains sources required for runtime processing.
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.bind.v2.runtime.reflect;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import com.sun.xml.bind.api.AccessorException;
import com.sun.xml.bind.v2.ClassFactory;
import com.sun.xml.bind.v2.model.core.Adapter;
import com.sun.xml.bind.v2.runtime.Coordinator;
/**
* {@link Accessor} that adapts the value by using {@link Adapter}.
*
* @see Accessor#adapt
* @author Kohsuke Kawaguchi
*/
final class AdaptedAccessor extends Accessor {
private final Accessor core;
private final Class extends XmlAdapter> adapter;
/*pacakge*/ AdaptedAccessor(Class targetType, Accessor extThis, Class extends XmlAdapter> adapter) {
super(targetType);
this.core = extThis;
this.adapter = adapter;
}
@Override
public boolean isAdapted() {
return true;
}
public OnWireValueT get(BeanT bean) throws AccessorException {
InMemValueT v = core.get(bean);
XmlAdapter a = getAdapter();
try {
return a.marshal(v);
} catch (Exception e) {
throw new AccessorException(e);
}
}
public void set(BeanT bean, OnWireValueT o) throws AccessorException {
XmlAdapter a = getAdapter();
try {
core.set(bean, (o == null ? null : a.unmarshal(o)));
} catch (Exception e) {
throw new AccessorException(e);
}
}
public Object getUnadapted(BeanT bean) throws AccessorException {
return core.getUnadapted(bean);
}
public void setUnadapted(BeanT bean, Object value) throws AccessorException {
core.setUnadapted(bean,value);
}
/**
* Sometimes Adapters are used directly by JAX-WS outside any
* {@link Coordinator}. Use this lazily-created cached
* {@link XmlAdapter} in such cases.
*/
private XmlAdapter staticAdapter;
private XmlAdapter getAdapter() {
Coordinator coordinator = Coordinator._getInstance();
if(coordinator!=null)
return coordinator.getAdapter(adapter);
else {
synchronized(this) {
if(staticAdapter==null)
staticAdapter = ClassFactory.create(adapter);
}
return staticAdapter;
}
}
}