gpt4 book ai didi

org.eclipse.persistence.oxm.mappings.XMLCompositeObjectMapping.getKeepAsElementPolicy()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-24 09:49:05 26 4
gpt4 key购买 nike

本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLCompositeObjectMapping.getKeepAsElementPolicy()方法的一些代码示例,展示了XMLCompositeObjectMapping.getKeepAsElementPolicy()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLCompositeObjectMapping.getKeepAsElementPolicy()方法的具体详情如下:
包路径:org.eclipse.persistence.oxm.mappings.XMLCompositeObjectMapping
类名称:XMLCompositeObjectMapping
方法名:getKeepAsElementPolicy

XMLCompositeObjectMapping.getKeepAsElementPolicy介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

protected XMLDescriptor getDescriptor(XMLRecord xmlRecord, AbstractSession session, QName rootQName) throws XMLMarshalException {
  if (rootQName == null) {
    rootQName = new QName(xmlRecord.getNamespaceURI(), xmlRecord.getLocalName());
  }
  XMLContext xmlContext = xmlRecord.getUnmarshaller().getXMLContext();
  XMLDescriptor xmlDescriptor = xmlContext.getDescriptor(rootQName);
  if (null == xmlDescriptor) {
    if (!((getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT))) {
      throw XMLMarshalException.noDescriptorWithMatchingRootElement(xmlRecord.getLocalName());
    }
  }
  return xmlDescriptor;
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected XMLDescriptor getDescriptor(XMLRecord xmlRecord, AbstractSession session, QName rootQName) throws XMLMarshalException {
  if (rootQName == null) {
    rootQName = new QName(xmlRecord.getNamespaceURI(), xmlRecord.getLocalName());
  }
  XMLContext xmlContext = xmlRecord.getUnmarshaller().getXMLContext();
  XMLDescriptor xmlDescriptor = xmlContext.getDescriptor(rootQName);
  if (null == xmlDescriptor) {
    if (!((getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT))) {
      throw XMLMarshalException.noDescriptorWithMatchingRootElement(xmlRecord.getLocalName());
    }
  }
  return xmlDescriptor;
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

protected XMLDescriptor getDescriptor(XMLRecord xmlRecord, AbstractSession session, QName rootQName) throws XMLMarshalException {
  if (rootQName == null) {
    rootQName = new QName(xmlRecord.getNamespaceURI(), xmlRecord.getLocalName());
  }
  XMLContext xmlContext = xmlRecord.getUnmarshaller().getXMLContext();
  XMLDescriptor xmlDescriptor = xmlContext.getDescriptor(rootQName);
  if (null == xmlDescriptor) {
    if (!((getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT))) {
      throw XMLMarshalException.noDescriptorWithMatchingRootElement(xmlRecord.getLocalName());
    }
  }
  return xmlDescriptor;
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

private Object convertToSimpleTypeIfPresent(Object toReturn, XMLRecord nestedRow, AbstractSession executionSession){
  Node textchild = ((Element) nestedRow.getDOM()).getFirstChild();     
  String stringValue = null;
  if ((textchild != null) && (textchild.getNodeType() == Node.TEXT_NODE)) {
    stringValue = ((Text) textchild).getNodeValue();
    if(stringValue != null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT && getKeepAsElementPolicy()!=UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT){
      toReturn = stringValue; 
    }
   }
  if ((stringValue == null) || stringValue.length() == 0) {
    return toReturn;
  }
     String type = ((Element) nestedRow.getDOM()).getAttributeNS(XMLConstants.SCHEMA_INSTANCE_URL, XMLConstants.SCHEMA_TYPE_ATTRIBUTE);

  if ((null != type) && type.length() > 0) {
    XPathFragment typeFragment = new XPathFragment(type);
    String namespaceURI = nestedRow.resolveNamespacePrefix(typeFragment.getPrefix());
    
    QName schemaTypeQName = new QName(namespaceURI, typeFragment.getLocalName());                       
    Class theClass = (Class) XMLConversionManager.getDefaultXMLTypes().get(schemaTypeQName);
    if (theClass != null) {            	  
      toReturn = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertObject(stringValue, theClass, schemaTypeQName);
    }                                    
  }
  return toReturn;        
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

private Object convertToSimpleTypeIfPresent(Object toReturn, XMLRecord nestedRow, AbstractSession executionSession){
  Node textchild = ((Element) nestedRow.getDOM()).getFirstChild();
  String stringValue = null;
  if ((textchild != null) && (textchild.getNodeType() == Node.TEXT_NODE)) {
    stringValue = ((Text) textchild).getNodeValue();
    if(stringValue != null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT && getKeepAsElementPolicy()!=UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT){
      toReturn = stringValue;
    }
   }
  if ((stringValue == null) || stringValue.length() == 0) {
    return toReturn;
  }
  String type = ((Element) nestedRow.getDOM()).getAttributeNS(javax.xml.XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI, XMLConstants.SCHEMA_TYPE_ATTRIBUTE);
  if ((null != type) && type.length() > 0) {
    XPathFragment typeFragment = new XPathFragment(type);
    String namespaceURI = nestedRow.resolveNamespacePrefix(typeFragment.getPrefix());
    QName schemaTypeQName = new QName(namespaceURI, typeFragment.getLocalName());
    ConversionManager conversionManager = (ConversionManager) executionSession.getDatasourcePlatform().getConversionManager();
    Class theClass = conversionManager.javaType(schemaTypeQName);
    if (theClass != null) {
      toReturn = conversionManager.convertObject(stringValue, theClass, schemaTypeQName);
    }
  }
  return toReturn;
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

private Object convertToSimpleTypeIfPresent(Object toReturn, XMLRecord nestedRow, AbstractSession executionSession){
  Node textchild = ((Element) nestedRow.getDOM()).getFirstChild();
  String stringValue = null;
  if ((textchild != null) && (textchild.getNodeType() == Node.TEXT_NODE)) {
    stringValue = ((Text) textchild).getNodeValue();
    if(stringValue != null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT && getKeepAsElementPolicy()!=UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT){
      toReturn = stringValue;
    }
   }
  if ((stringValue == null) || stringValue.length() == 0) {
    return toReturn;
  }
  String type = ((Element) nestedRow.getDOM()).getAttributeNS(javax.xml.XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI, XMLConstants.SCHEMA_TYPE_ATTRIBUTE);
  if ((null != type) && type.length() > 0) {
    XPathFragment typeFragment = new XPathFragment(type);
    String namespaceURI = nestedRow.resolveNamespacePrefix(typeFragment.getPrefix());
    QName schemaTypeQName = new QName(namespaceURI, typeFragment.getLocalName());
    ConversionManager conversionManager = (ConversionManager) executionSession.getDatasourcePlatform().getConversionManager();
    Class theClass = conversionManager.javaType(schemaTypeQName);
    if (theClass != null) {
      toReturn = conversionManager.convertObject(stringValue, theClass, schemaTypeQName);
    }
  }
  return toReturn;
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected ClassDescriptor getReferenceDescriptor(Class theClass, AbstractSession session) {
  if ((getReferenceDescriptor() != null) && getReferenceDescriptor().getJavaClass().equals(theClass)) {
    return getReferenceDescriptor();
  }
  ClassDescriptor subDescriptor = session.getDescriptor(theClass);
  if (subDescriptor == null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    throw DescriptorException.noSubClassMatch(theClass, this);
  } else {
    return subDescriptor;
  }
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

protected ClassDescriptor getReferenceDescriptor(Class theClass, AbstractSession session) {
  if ((getReferenceDescriptor() != null) && getReferenceDescriptor().getJavaClass().equals(theClass)) {
    return getReferenceDescriptor();
  }
  ClassDescriptor subDescriptor = session.getDescriptor(theClass);
  if (subDescriptor == null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    throw DescriptorException.noSubClassMatch(theClass, this);
  } else {
    return subDescriptor;
  }
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

protected ClassDescriptor getReferenceDescriptor(Class theClass, AbstractSession session) {
  if ((getReferenceDescriptor() != null) && getReferenceDescriptor().getJavaClass().equals(theClass)) {
    return getReferenceDescriptor();
  }
  ClassDescriptor subDescriptor = session.getDescriptor(theClass);
  if (subDescriptor == null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    throw DescriptorException.noSubClassMatch(theClass, this);
  } else {
    return subDescriptor;
  }
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

if ((getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT)) {
  XMLPlatformFactory.getInstance().getXMLPlatform().namespaceQualifyFragment((Element) nestedRow.getDOM());
  toReturn = nestedRow.getDOM();

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

if ((getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT)) {
  XMLPlatformFactory.getInstance().getXMLPlatform().namespaceQualifyFragment((Element) nestedRow.getDOM());
  toReturn = nestedRow.getDOM();

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

UnmarshalKeepAsElementPolicy keepAsElementPolicy = xmlCompositeObjectMapping.getKeepAsElementPolicy();

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

if ((getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT)) {
  XMLPlatformFactory.getInstance().getXMLPlatform().namespaceQualifyFragment((Element) nestedRow.getDOM());
  toReturn = nestedRow.getDOM();

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

@Override
protected Object buildCompositeRow(Object attributeValue, AbstractSession session, AbstractRecord databaseRow, WriteType writeType) {
  XMLDescriptor xmlReferenceDescriptor = null;
  try{
    xmlReferenceDescriptor = (XMLDescriptor) getReferenceDescriptor(attributeValue, session);
  }catch(Exception e){
    //do nothing
  }
  XMLField xmlFld = (XMLField) getField();
  if (xmlFld.hasLastXPathFragment() && xmlFld.getLastXPathFragment().hasLeafElementType()) {
    XMLRecord xmlRec = (XMLRecord) databaseRow;
    xmlRec.setLeafElementType(xmlFld.getLastXPathFragment().getLeafElementType());
  }
  XMLRecord parent = (XMLRecord) databaseRow;
  if (xmlReferenceDescriptor != null) {
    return buildCompositeRowForDescriptor(xmlReferenceDescriptor, attributeValue, session, parent, writeType);
  } else {
    if (attributeValue instanceof Element && getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
      return new DOMRecord((Element) attributeValue);
    }else{
      Node newNode = XPathEngine.getInstance().create((XMLField)getField(), parent.getDOM(), attributeValue, session);
      DOMRecord newRow = new DOMRecord(newNode);
      return newRow;
    }
  }
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

xmlDescriptor = findReferenceDescriptor(xPathFragment, unmarshalRecord, atts, xmlCompositeObjectMapping,xmlCompositeObjectMapping.getKeepAsElementPolicy());
UnmarshalKeepAsElementPolicy policy = xmlCompositeObjectMapping.getKeepAsElementPolicy();
if (((xmlDescriptor == null) && (policy == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT)) || (policy == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT)) {
  if(unmarshalRecord.getTypeQName() != null){

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

@Override
protected Object buildCompositeRow(Object attributeValue, AbstractSession session, AbstractRecord databaseRow, WriteType writeType) {
  XMLDescriptor xmlReferenceDescriptor = null;
  try{
    xmlReferenceDescriptor = (XMLDescriptor) getReferenceDescriptor(attributeValue, session);
  }catch(Exception e){
    //do nothing
  }
  XMLField xmlFld = (XMLField) getField();
  if (xmlFld.hasLastXPathFragment() && xmlFld.getLastXPathFragment().hasLeafElementType()) {
    XMLRecord xmlRec = (XMLRecord) databaseRow;
    xmlRec.setLeafElementType(xmlFld.getLastXPathFragment().getLeafElementType());
  }
  XMLRecord parent = (XMLRecord) databaseRow;
  if (xmlReferenceDescriptor != null) {
    return buildCompositeRowForDescriptor(xmlReferenceDescriptor, attributeValue, session, parent, writeType);
      } else {
    if (attributeValue instanceof Element && getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
      return new DOMRecord((Element) attributeValue);
    }else{
      Node newNode = XPathEngine.getInstance().create((XMLField)getField(), parent.getDOM(), attributeValue, session);
      DOMRecord newRow = new DOMRecord(newNode);
      return newRow;
    }
  }
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

XMLDescriptor xmlDescriptor = (XMLDescriptor)xmlCompositeObjectMapping.getReferenceDescriptor();
if (null == xmlDescriptor) {
  xmlDescriptor = findReferenceDescriptor(null, unmarshalRecord, atts, xmlCompositeObjectMapping,xmlCompositeObjectMapping.getKeepAsElementPolicy());

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

marshalRecord.closeStartGroupingElements(groupingFragment);
UnmarshalKeepAsElementPolicy keepAsElementPolicy = xmlCompositeObjectMapping.getKeepAsElementPolicy();
if (((keepAsElementPolicy == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) || (keepAsElementPolicy == UnmarshalKeepAsElementPolicy.KEEP_ALL_AS_ELEMENT)) && objectValue instanceof Node) {
  if(xPathFragment.isSelfFragment){

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

return child;
} else {
  if (attributeValue instanceof Element && getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    return new DOMRecord((Element) attributeValue);
  }else{

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

UnmarshalKeepAsElementPolicy keepAsElementPolicy = xmlCompositeObjectMapping.getKeepAsElementPolicy();

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com