blob: 2864a49c8d45eb882166bfe07de3bfd9881feed6 [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.events;
import java.util.ArrayList;
import org.eclipse.persistence.oxm.*;
/**
* @version $Header: UnmarshalListenerImpl.java 17-may-2006.14:47:42 mmacivor Exp $
* @author mmacivor
* @since release specific (what release of product did this appear in)
*/
public class UnmarshalListenerImpl implements XMLUnmarshalListener {
static Integer EMPLOYEE_BEFORE_UNMARSHAL = Integer.valueOf(0);
static Integer ADDRESS_BEFORE_UNMARSHAL = Integer.valueOf(1);
static Integer PHONE_BEFORE_UNMARSHAL = Integer.valueOf(2);
static Integer EMPLOYEE_AFTER_UNMARSHAL = Integer.valueOf(3);
static Integer ADDRESS_AFTER_UNMARSHAL = Integer.valueOf(4);
static Integer PHONE_AFTER_UNMARSHAL = Integer.valueOf(5);
public ArrayList events = null;
public UnmarshalListenerImpl() {
events = new ArrayList();
}
@Override
public void beforeUnmarshal(Object obj, Object parent) {
if(obj instanceof Employee) {
events.add(EMPLOYEE_BEFORE_UNMARSHAL);
} else if(obj instanceof Address) {
events.add(ADDRESS_BEFORE_UNMARSHAL);
} else if(obj instanceof PhoneNumber) {
events.add(PHONE_BEFORE_UNMARSHAL);
}
}
@Override
public void afterUnmarshal(Object obj, Object parent) {
if(obj instanceof Employee) {
events.add(EMPLOYEE_AFTER_UNMARSHAL);
} else if(obj instanceof Address) {
events.add(ADDRESS_AFTER_UNMARSHAL);
} else if(obj instanceof PhoneNumber) {
events.add(PHONE_AFTER_UNMARSHAL);
}
}
}