blob: a4be998c1ac0ef8c8b0d20146386f5ceebf247cb [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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:
// Denise Smith - 2.3
package org.eclipse.persistence.testing.jaxb.annotations.xmltransformation;
import org.eclipse.persistence.mappings.foundation.AbstractTransformationMapping;
import org.eclipse.persistence.mappings.transformers.AttributeTransformer;
import org.eclipse.persistence.mappings.transformers.FieldTransformer;
import org.eclipse.persistence.sessions.DataRecord;
import org.eclipse.persistence.sessions.Session;
public class AddressTransformer implements FieldTransformer, AttributeTransformer {
@Override
public void initialize(AbstractTransformationMapping mapping) {
}
@Override
public Object buildFieldValue(Object instance, String fieldName, Session session) {
if (instance instanceof EmployeeWithAddress) {
if (fieldName.contains("street")) {
return ((EmployeeWithAddress) instance).address.street;
} else if (fieldName.contains("city")) {
return ((EmployeeWithAddress) instance).address.city;
}
}
if (instance instanceof EmployeeWithAddressAndTransformer) {
if (fieldName.contains("street")) {
return ((EmployeeWithAddressAndTransformer) instance).address.street;
}else if (fieldName.contains("city")) {
return ((EmployeeWithAddressAndTransformer) instance).address.city;
}
}
return null;
}
@Override
public Object buildAttributeValue(DataRecord dataRecord, Object object, Session session) {
String street = (String) dataRecord.get("address/street/text()");
String city =(String) dataRecord.get("address/city/text()");
return new AddressNoCtor(street, city);
}
}