/******************************************************************************* * Copyright (c) 1998, 2015 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: * bdoughan - May 6/2008 - 1.0M7 - Initial implementation ******************************************************************************/ package org.eclipse.persistence.sdo.types; import commonj.sdo.Type; import org.eclipse.persistence.oxm.mappings.XMLAnyAttributeMapping; import org.eclipse.persistence.oxm.mappings.XMLAnyCollectionMapping; import org.eclipse.persistence.sdo.SDOType; import org.eclipse.persistence.sdo.helper.SDOTypeHelper; public class SDOObjectType extends SDOType implements Type { private static final String ANY_MAPPING_ATTRIBUTE_NAME = "openContentProperties"; private static final String ANY_MAPPING_GET_METHOD_NAME = "_getOpenContentPropertiesWithXMLRoots"; private static final String ANY_MAPPING_SET_METHOD_NAME = "_setOpenContentPropertiesWithXMLRoots"; public SDOObjectType(String aUri, String aName, SDOTypeHelper sdoTypeHelper) { super(aUri, aName, sdoTypeHelper); } public boolean isDataType() { return false; } public boolean isSequenced() { return xmlDescriptor.isSequencedObject(); } public void setSequenced(boolean isSequenced) { xmlDescriptor.setSequencedObject(isSequenced); } public Object getPseudoDefault() { return null; } protected void addOpenMappings() { XMLAnyCollectionMapping anyMapping = new XMLAnyCollectionMapping(); anyMapping.setAttributeName(ANY_MAPPING_ATTRIBUTE_NAME); anyMapping.setGetMethodName(ANY_MAPPING_GET_METHOD_NAME); anyMapping.setSetMethodName(ANY_MAPPING_SET_METHOD_NAME); anyMapping.setUseXMLRoot(true); getXmlDescriptor().addMapping(anyMapping); XMLAnyAttributeMapping anyAttrMapping = new XMLAnyAttributeMapping(); anyAttrMapping.setAttributeName("openContentPropertiesAttributes"); anyAttrMapping.setGetMethodName("_getOpenContentPropertiesAttributesMap"); anyAttrMapping.setSetMethodName("_setOpenContentPropertiesAttributesMap"); getXmlDescriptor().addMapping(anyAttrMapping); } }