001/*
002 * (C) Copyright 2015 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl-2.1.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nicolas Chapurlat <nchapurlat@nuxeo.com>
016 */
017
018package org.nuxeo.ecm.core.io.marshallers.json.enrichers;
019
020import org.nuxeo.ecm.core.io.marshallers.json.ExtensibleEntityJsonWriter;
021
022/**
023 * Technical wrapper that embed an enriched entity for a broadcast to related enrichers. see
024 * {@link ExtensibleEntityJsonWriter} and {@link AbstractJsonEnricher} to understand how it works.
025 *
026 * @param <EntityType> The Java type to enrich.
027 * @since 7.2
028 */
029public class Enriched<EntityType> {
030
031    private EntityType enrichable;
032
033    public Enriched(EntityType enrichable) {
034        super();
035        this.enrichable = enrichable;
036    }
037
038    public EntityType getEntity() {
039        return enrichable;
040    }
041
042}