All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.glassfish.jaxb.runtime.v2.runtime.property.Property Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2020 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 org.glassfish.jaxb.runtime.v2.runtime.property;

import org.glassfish.jaxb.runtime.api.AccessorException;
import org.glassfish.jaxb.core.v2.model.core.ID;
import org.glassfish.jaxb.core.v2.model.core.PropertyInfo;
import org.glassfish.jaxb.core.v2.model.core.PropertyKind;
import org.glassfish.jaxb.runtime.v2.model.runtime.RuntimePropertyInfo;
import org.glassfish.jaxb.runtime.v2.runtime.JaxBeanInfo;
import org.glassfish.jaxb.runtime.v2.runtime.XMLSerializer;
import org.glassfish.jaxb.runtime.v2.runtime.reflect.Accessor;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBElement;
import org.xml.sax.SAXException;

import javax.xml.stream.XMLStreamException;
import java.io.IOException;

/**
 * A JAXB property that constitutes a JAXB-bound bean.
 *
 * @author Kohsuke Kawaguchi ([email protected])
 */
public interface Property extends StructureLoaderBuilder {

//    // is this method necessary? --> probably not
//    RuntimePropertyInfo owner();

    /**
     * Resets the property value on the given object.
     *
     * 

* ... for example by setting 0 or null. */ void reset( BeanT o ) throws AccessorException; /** * @see JaxBeanInfo#serializeBody(Object, XMLSerializer) * * @param outerPeer * used when this property is expected to print out an element * and that should be associated with this outer peer. normally null. * this is only used for {@link JaxBeanInfo} for {@link JAXBElement}s. * @throws AccessorException * If thrown, caught by the caller and reported. */ public void serializeBody(BeanT beanT, XMLSerializer target, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException; /** * @see JaxBeanInfo#serializeURIs(Object, XMLSerializer) */ public void serializeURIs(BeanT beanT, XMLSerializer target) throws SAXException, AccessorException; /** * Returns true if * {@link #serializeURIs(Object,XMLSerializer)} performs some meaningful action. */ public boolean hasSerializeURIAction(); // /** // * Builds the unmarshaller. // * // * @param grammar // * the context object to which this property ultimately belongs to. // * a property will only belong to one grammar, but to reduce the memory footprint // * we don't keep that information stored in {@link Property}, and instead we // * just pass the value as a parameter when needed. // */ // Unmarshaller.Handler createUnmarshallerHandler(JAXBContextImpl grammar, Unmarshaller.Handler tail); /** * Gets the value of the property. * * This method is only used when the corresponding {@link PropertyInfo#id()} is {@link ID#ID}, * and therefore the return type is fixed to {@link String}. */ String getIdValue(BeanT bean) throws AccessorException, SAXException; /** * Gets the Kind of property * @return * always non-null. */ PropertyKind getKind(); // UGLY HACK to support JAX-WS // if other clients want to access those functionalities, // we should design a better model /** * If this property is mapped to the specified element, * return an accessor to it. * * @return * null if the property is not mapped to the specified element. */ Accessor getElementPropertyAccessor(String nsUri,String localName); /** * Called at the end of the {@link JAXBContext} initialization phase * to clean up any unnecessary references. */ void wrapUp(); /** * Provides more {@link RuntimePropertyInfo} information on the property. * * @return * null if RETAIN_REFERENCE_TO_INFO property is not set on the {@link JAXBContext} */ public RuntimePropertyInfo getInfo(); public boolean isHiddenByOverride(); public void setHiddenByOverride(boolean hidden); public String getFieldName(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy