Package of overFlow has been changed.
This commit is contained in:
18
src/ts/@overflow/noauthprobe/api/model/NoAuthProbe.ts
Normal file
18
src/ts/@overflow/noauthprobe/api/model/NoAuthProbe.ts
Normal 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;
|
||||
@@ -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;
|
||||
0
src/ts/@overflow/noauthprobe/index.ts
Normal file
0
src/ts/@overflow/noauthprobe/index.ts
Normal file
0
src/ts/@overflow/noauthprobe/react/_
Normal file
0
src/ts/@overflow/noauthprobe/react/_
Normal file
0
src/ts/@overflow/noauthprobe/react/components/_
Normal file
0
src/ts/@overflow/noauthprobe/react/components/_
Normal file
3
src/ts/@overflow/noauthprobe/redux/action/read.ts
Normal file
3
src/ts/@overflow/noauthprobe/redux/action/read.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
0
src/ts/@overflow/noauthprobe/redux/action/regist.ts
Normal file
0
src/ts/@overflow/noauthprobe/redux/action/regist.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
3
src/ts/@overflow/noauthprobe/redux/reducer/read.ts
Normal file
3
src/ts/@overflow/noauthprobe/redux/reducer/read.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
3
src/ts/@overflow/noauthprobe/redux/saga/read.ts
Normal file
3
src/ts/@overflow/noauthprobe/redux/saga/read.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
0
src/ts/@overflow/noauthprobe/redux/saga/regist.ts
Normal file
0
src/ts/@overflow/noauthprobe/redux/saga/regist.ts
Normal file
3
src/ts/@overflow/noauthprobe/redux/state/Read.ts
Normal file
3
src/ts/@overflow/noauthprobe/redux/state/Read.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
3
src/ts/@overflow/noauthprobe/redux/state/Regist.ts
Normal file
3
src/ts/@overflow/noauthprobe/redux/state/Regist.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by geek on 17. 7. 3.
|
||||
*/
|
||||
Reference in New Issue
Block a user