blob: 14ec89c30452f88b0978933b5108c99d329c84b4 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.xmlbinder.anymappingtests;
import org.eclipse.persistence.oxm.XMLDescriptor;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.sessions.Project;
import org.eclipse.persistence.oxm.mappings.*;
/**
* @version $Header: AnyCollectionWithGroupingElementProject.java 02-nov-2006.10:56:44 gyorke Exp $
* @author mmacivor
* @since release specific (what release of product did this appear in)
*/
public class AnyCollectionWithGroupingElementProject extends Project {
public AnyCollectionWithGroupingElementProject() {
this.addDescriptor(buildRootDescriptor());
this.addDescriptor(buildChildDescriptor());
}
public ClassDescriptor buildRootDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.setJavaClass(AnyCollectionRoot.class);
descriptor.setDefaultRootElement("root");
XMLAnyCollectionMapping mapping = new XMLAnyCollectionMapping();
mapping.setAttributeName("any");
mapping.setGetMethodName("getAny");
mapping.setSetMethodName("setAny");
descriptor.addMapping(mapping);
return descriptor;
}
public ClassDescriptor buildChildDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.setJavaClass(AnyCollectionChild.class);
descriptor.setDefaultRootElement("child");
descriptor.addRootElement("someChild");
XMLDirectMapping mapping = new XMLDirectMapping();
mapping.setAttributeName("content");
mapping.setGetMethodName("getContent");
mapping.setSetMethodName("setContent");
mapping.setXPath("text()");
descriptor.addMapping(mapping);
return descriptor;
}
}