diff --git a/configurator/src/main/java/org/apache/felix/configurator/impl/json/OrderedDictionary.java b/configurator/src/main/java/org/apache/felix/configurator/impl/json/OrderedDictionary.java index 3891f159212..d7e0463b099 100644 --- a/configurator/src/main/java/org/apache/felix/configurator/impl/json/OrderedDictionary.java +++ b/configurator/src/main/java/org/apache/felix/configurator/impl/json/OrderedDictionary.java @@ -18,6 +18,7 @@ */ package org.apache.felix.configurator.impl.json; +import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.Dictionary; @@ -33,7 +34,10 @@ * Actually this class is a simple adapter from the Dictionary interface * to a synchronized LinkedHashMap */ -public class OrderedDictionary extends Dictionary implements Map { +public class OrderedDictionary extends Dictionary implements Map, Serializable { + + private static final long serialVersionUID = -525111601546803041L; + private static class EnumarationImpl implements Enumeration { private final Iterator iterator;