dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
Merge branch 'angular2' of https://git.curisit.net/gitblit/git/common/secur...
César Calvo
2017-03-14
9594a7964afd06d1cde4bff1e015293de90a7694
[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
import { Observable } from 'rxjs/Rx';
import { Injectable } from '@angular/core';
import { Http, RequestOptions } from '@angular/http';
import { SeCurisResourceServices } from './base';
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) {
super(http, 'application');
}
}