import { Injectable } from '@angular/core'; import { RPCService } from '@loafer/ng-rpc'; import { Observable } from 'rxjs'; import { Target } from '@overflow/commons-typescript/model/target'; import { Host, Service } from '@overflow/commons-typescript/model/discovery'; import { Page, PageParams } from '@overflow/commons-typescript/core/model'; import {Notification} from '@overflow/commons-typescript/model/notification'; @Injectable() export class TargetService { public constructor( private rpcService: RPCService, ) { } public registDiscoveredTargets(probeID: number, hosts: Host[], services: Service[]): Observable { return this.rpcService.call('TargetService.registDiscoveredTargets', probeID, hosts, services); } // // public modify(target: Target): Observable { // return this.rpcService.call('TargetService.modify', target); // } public findExistHostTarget(probeID: number, hostIP: string): Observable { return this.rpcService.call('TargetService.readExistHostTarget', probeID, hostIP); } public findExistServiceTarget(hostID: number, portNumber: number, portType: string): Observable { return this.rpcService.call('TargetService.readExistServiceTarget', hostID, portNumber, portType); } public readAllByProbeID(probeID: number, pageParams: PageParams): Observable> { return this.rpcService.call>('TargetService.readAllByProbeID', probeID, pageParams); } }