Package of overFlow has been changed.

This commit is contained in:
crusader
2017-07-03 19:21:42 +09:00
parent 63b55c02ad
commit 87365ba7c8
370 changed files with 195 additions and 113 deletions

View File

@@ -0,0 +1,18 @@
import Probe from '@overflow/probe/api/model/Probe';
import MetaNoAuthProbeStatus from '@overflow/meta/api/model/MetaNoAuthProbeStatus';
import Domain from '@overflow/domain/api/model/Domain';
interface NoAuthProbe {
id?: number;
hostName?: string;
macAddress: number;
ipAddress: number;
status: MetaNoAuthProbeStatus;
tempProbeKey: string;
createDate?: Date;
apiKey: string;
domain?: Domain;
probe: Probe;
}
export default NoAuthProbe;

View File

@@ -0,0 +1,25 @@
import Service from '@overflow/commons/api/Service';
import NoAuthProbe from '../model/NoAuthProbe';
import Domain from '@overflow/domain/api/model/Domain';
export class NoAuthProbeService extends Service {
public constructor() {
super('NoAuthProbeService');
}
public regist(noAuthProbe:NoAuthProbe): void {
return null;
}
// Todo List<NoAuthProbe>
public readAllBySensor(domain:Domain): Promise<NoAuthProbe> {
return null;
}
public read(id:string): Promise<NoAuthProbe> {
return null;
}
}
export default NoAuthProbeService;

View File

View File

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/

View File

@@ -0,0 +1,3 @@
/**
* Created by geek on 17. 7. 3.
*/