/* * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.groupbasedpolicy.sxp.ep.provider.api; import org.opendaylight.groupbasedpolicy.sxp.ep.provider.impl.DSAsyncDao; import org.opendaylight.groupbasedpolicy.sxp.ep.provider.impl.ReadableAsyncByKey; import org.opendaylight.groupbasedpolicy.sxp.ep.provider.impl.dao.EpPolicyTemplateValueKey; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.sxp.integration.sxp.ep.provider.model.rev160302.sxp.ep.mapper.EndpointPolicyTemplateBySgt; import org.opendaylight.yang.gen.v1.urn.opendaylight.sxp.database.rev160308.Sgt; /** * Purpose: union of template-dao and template provider consumer */ public interface EPPolicyTemplateDaoFacade extends TemplateProviderDistributionTarget<EPPolicyTemplateProvider>, DSAsyncDao<Sgt, EndpointPolicyTemplateBySgt>, ReadableAsyncByKey<EpPolicyTemplateValueKey, EndpointPolicyTemplateBySgt> { }