dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#3531 fix - Fixed method overrided
rsanchez
2017-06-08
23398d106bbbf9b4b9b27cbfac61755e3fadec3b
[common/securis.git]
/
securis
/
src
/
main
/
webapp
/
src
/
app
/
resources
/
applications.ts
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
import { Observable } from 'rxjs/Rx';
import { Injectable } from '@angular/core';
import { Http, RequestOptions } from '@angular/http';
import { SeCurisResourceServices } from './base';
import { LocaleService } from '../common/i18n';
var app_example = { code: 'CICS',
creation_timestamp: 1418384439000,
description: 'Wellbore integrity analysis software',
id: 1,
license_filename: 'config_server.lic',
metadata:
[ { key: 'simulationModes',
value: 'A1,A2,A3,QL,N1,QLPRO',
creation_timestamp: 1418384439000,
mandatory: true } ],
name: 'CurisIntegrity' }
@Injectable()
export class ApplicationsService extends SeCurisResourceServices {
constructor(http: Http, $L: LocaleService) {
super($L, http, 'application');
}
}