public interface UsecpluginService extends RpcService
rpc attacksFromIP {
input {
leaf SrcIP {
type string;
}
}
output {
leaf NoOfAttacks {
type uint16;
}
}
}
rpc attackID {
input {
leaf NodeID {
type string;
}
}
output {
leaf NoOfAttacks {
type uint16;
}
}
}
rpc attacksToIP {
input {
leaf DstIP {
type string;
}
}
output {
leaf NoOfAttacks {
type uint16;
}
}
}
rpc attacksInTime {
input {
leaf UpwardTime {
type string;
}
leaf Window {
type uint16;
}
}
output {
leaf NoOfAttacks {
type uint16;
}
}
}
| Modifier and Type | Method and Description |
|---|---|
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttackIDOutput>> |
attackID(AttackIDInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttacksFromIPOutput>> |
attacksFromIP(AttacksFromIPInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttacksInTimeOutput>> |
attacksInTime(AttacksInTimeInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttacksToIPOutput>> |
attacksToIP(AttacksToIPInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttacksFromIPOutput>> attacksFromIP(AttacksFromIPInput input)
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttackIDOutput>> attackID(AttackIDInput input)
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttacksToIPOutput>> attacksToIP(AttacksToIPInput input)
Future<org.opendaylight.yangtools.yang.common.RpcResult<AttacksInTimeOutput>> attacksInTime(AttacksInTimeInput input)
Copyright © 2016 OpenDaylight. All rights reserved.