aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-license-manager/src/main/java/org/openecomp/sdc/vendorlicense/impl/VendorLicenseManagerFactoryImpl.java
blob: 152ddd0e1389bc1a2c013bee85cf3f66cb859f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package org.openecomp.sdc.vendorlicense.impl;

import org.openecomp.sdc.activityLog.ActivityLogManagerFactory;
import org.openecomp.sdc.vendorlicense.VendorLicenseManager;
import org.openecomp.sdc.vendorlicense.VendorLicenseManagerFactory;
import org.openecomp.sdc.vendorlicense.dao.EntitlementPoolDaoFactory;
import org.openecomp.sdc.vendorlicense.dao.FeatureGroupDaoFactory;
import org.openecomp.sdc.vendorlicense.dao.LicenseAgreementDaoFactory;
import org.openecomp.sdc.vendorlicense.dao.LicenseKeyGroupDaoFactory;
import org.openecomp.sdc.vendorlicense.dao.LimitDaoFactory;
import org.openecomp.sdc.vendorlicense.dao.VendorLicenseModelDaoFactory;
import org.openecomp.sdc.vendorlicense.facade.VendorLicenseFacadeFactory;
import org.openecomp.sdc.versioning.VersioningManagerFactory;

/**
 * Created by ayalaben on 8/3/2017
 */
public class VendorLicenseManagerFactoryImpl  extends VendorLicenseManagerFactory {
  private static final VendorLicenseManager INSTANCE =
      new VendorLicenseManagerImpl(
          VersioningManagerFactory.getInstance().createInterface(),
          VendorLicenseFacadeFactory.getInstance().createInterface(),
          VendorLicenseModelDaoFactory.getInstance().createInterface(),
          LicenseAgreementDaoFactory.getInstance().createInterface(),
          FeatureGroupDaoFactory.getInstance().createInterface(),
          EntitlementPoolDaoFactory.getInstance().createInterface(),
          LicenseKeyGroupDaoFactory.getInstance().createInterface(),
          ActivityLogManagerFactory.getInstance().createInterface(),
          LimitDaoFactory.getInstance().createInterface());

  @Override
  public VendorLicenseManager createInterface() {
    return INSTANCE;
  }

}