summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/import/tosca/heat-types/Generic_PNF/Generic_PNF.json
blob: cfa11dc3c77c2326d8f179bff9f5f10bffb288e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "payloadName": "Generic_PNF.yml",
  "contactId": "jh0003",
  "name": "Generic_PNF",
  "description": "Represents a generic PNF.",
  "resourceIconPath": "defaulticon",
  "resourceType": "ABSTRACT",
  "categories": [
  {
    "name": "Generic",
    "subcategories": [
      {
        "name": "Abstract"
      }
    ]
  }
],
  "tags": [
    "Generic_PNF"
  ]
}
">Component, IAppConfigurtaion} from "../../models"; export interface IProductService extends IComponentService { } export class ProductService extends ComponentService implements IProductService { static '$inject' = [ 'Restangular', 'sdcConfig', 'Sdc.Services.SharingService', '$q', '$base64' ]; constructor(protected restangular:restangular.IElement, protected sdcConfig:IAppConfigurtaion, protected sharingService:SharingService, protected $q:ng.IQService, protected $base64:any) { super(restangular, sdcConfig, sharingService, $q, $base64); this.restangular = restangular.one("products"); } createComponentObject = (component:Component):Component => { return new Product(this, this.$q, <Product>component); }; }