Package org.jpos.util

Source Code of org.jpos.util.ISOBinaryFieldDeepCopier

package org.jpos.util;

import org.apache.commons.lang.ArrayUtils;
import org.jpos.iso.ISOBinaryField;

/**
* $Revision: 23416 $
* $Date: 2007-03-14 00:14:09 +0000 (Wed, 14 Mar 2007) $
* $Author: nsmith $
*/
class ISOBinaryFieldDeepCopier {

    ISOBinaryFieldDeepCopier() {
    }
   
    public ISOBinaryField doDeepCopy(ISOBinaryField field) {
        return new ISOBinaryField(((Integer) field.getKey()).intValue(), ArrayUtils.clone((byte[]) field.getValue()));
    }

}
TOP

Related Classes of org.jpos.util.ISOBinaryFieldDeepCopier

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.