
org.eclipse.persistence.internal.oxm.ContainerValue Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.internal.oxm;
import org.eclipse.persistence.internal.oxm.record.MarshalContext;
import org.eclipse.persistence.internal.queries.ContainerPolicy;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.mappings.DatabaseMapping;
import org.eclipse.persistence.oxm.NamespaceResolver;
import org.eclipse.persistence.oxm.record.MarshalRecord;
/**
* INTERNAL:
* Purpose: If an implementation of NodeValue is capable of returning
* a collection value then it must implement this interface to be handled
* correctly by the TreeObjectBuilder.
*/
public interface ContainerValue {
public Object getContainerInstance();
public void setContainerInstance(Object object, Object containerInstance);
public ContainerPolicy getContainerPolicy();
/**
* Marshal only one of the values from the collection.
* @param xPathFragment
* @param marshalRecord
* @param object
* @param value
* @param session
* @param namespaceResolver
* @param marshalContext
*/
public boolean marshalSingleValue(XPathFragment xPathFragment, MarshalRecord marshalRecord, Object object, Object value, AbstractSession session, NamespaceResolver namespaceResolver, MarshalContext marshalContext);
public DatabaseMapping getMapping();
/**
* Return true if the original container on the object should be used if
* present. If it is not present then the container policy will be used to
* create the container.
*/
public boolean getReuseContainer();
/**
* INTERNAL:
* Used to track the index of the corresponding containerInstance in the containerInstances Object[] on UnmarshalRecord
*/
public int getIndex();
/**
* INTERNAL
* Return true if an empty container should be set on the object if there
* is no presence of the collection in the XML document.
* @since EclipseLink 2.3.3
*/
public boolean isDefaultEmptyContainer();
/**
* For media types that provide a native representation of collections (such
* as JSON arrays), can the representation be simplified so that the
* grouping element can be used as the collection name.
*/
public boolean isWrapperAllowedAsCollectionName();
/**
* INTERNAL:
* Set to track the index of the corresponding containerInstance in the containerInstances Object[] on UnmarshalRecord
* Set during TreeObjectBuilder initialization
*/
public void setIndex(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy