001package org.nuxeo.segment.io;
002
003import java.util.HashMap;
004import java.util.Map;
005
006import org.nuxeo.common.xmap.annotation.XNodeMap;
007import org.nuxeo.common.xmap.annotation.XObject;
008
009/**
010 *
011 * @author <a href="mailto:tdelprat@nuxeo.com">Tiry</a>
012 *
013 */
014@XObject("integrationsConfig")
015public class SegmentIOIntegrations {
016
017    @XNodeMap(value = "integrations/integration", key = "@name", type = HashMap.class, componentType = Boolean.class)
018    Map<String, Boolean> integrations = new HashMap<String, Boolean>();
019
020}