1 /**
2 * Copyright (C) cedarsoft GmbH.
3 *
4 * Licensed under the GNU General Public License version 3 (the "License")
5 * with Classpath Exception; you may not use this file except in compliance
6 * with the License. You may obtain a copy of the License at
7 *
8 * http://www.cedarsoft.org/gpl3ce
9 * (GPL 3 with Classpath Exception)
10 *
11 * This code is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 3 only, as
13 * published by the Free Software Foundation. cedarsoft GmbH designates this
14 * particular file as subject to the "Classpath" exception as provided
15 * by cedarsoft GmbH in the LICENSE file that accompanied this code.
16 *
17 * This code is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * version 3 for more details (a copy is included in the LICENSE file that
21 * accompanied this code).
22 *
23 * You should have received a copy of the GNU General Public License version
24 * 3 along with this work; if not, write to the Free Software Foundation,
25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26 *
27 * Please contact cedarsoft GmbH, 72810 Gomaringen, Germany,
28 * or visit www.cedarsoft.com if you need additional information or
29 * have any questions.
30 */
31
32 package com.cedarsoft.serialization;
33
34 import com.cedarsoft.Version;
35
36 import javax.annotation.Nonnull;
37 import java.util.HashMap;
38 import java.util.Map;
39
40 /**
41 * @param <T> the type
42 * @deprecated use {@link AbstractXmlVersionTest2} instead
43 */
44 @Deprecated
45 public abstract class AbstractXmlVersionTest<T> extends AbstractVersionTest<T> {
46 @Nonnull
47 @Override
48 protected final Map<? extends Version, ? extends byte[]> getSerialized() throws Exception {
49 Map<Version, byte[]> serializedMap = new HashMap<Version, byte[]>();
50 for ( Map.Entry<? extends Version, ? extends String> entry : getSerializedXml().entrySet() ) {
51 byte[] xml = processXml( entry.getValue(), entry.getKey() );
52 serializedMap.put( entry.getKey(), xml );
53 }
54
55 return serializedMap;
56 }
57
58 /**
59 * Converts the xml string to a byte array used to deserialize.
60 * This method automatically adds the namespace containing the version.
61 *
62 * @param xml the xml
63 * @param version the version
64 * @return the byte array using the xml string
65 */
66 @Nonnull
67 protected byte[] processXml( @Nonnull final String xml, @Nonnull Version version ) throws Exception {
68 String nameSpace = ( ( AbstractXmlSerializer<?, ?, ?, ?> ) getSerializer() ).createNameSpace( version );
69 return AbstractXmlSerializerTest2.addNameSpace( nameSpace, xml.getBytes() ).getBytes();
70 }
71
72 /**
73 * Returns a map containing the serialized xmls
74 *
75 * @return a map containing the serialized xmls
76 */
77 @Nonnull
78 protected abstract Map<? extends Version, ? extends String> getSerializedXml();
79 }