StoreBackEnd/pkg/protocol/IProtocolReader.go

14 lines
407 B
Go
Raw Normal View History

package protocol
// IProtocolReader Représentation abstraite d'un protocol
type IProtocolReader interface {
2022-02-22 08:34:45 +01:00
// GetCmd Permet de récupérer le nom de la commande
GetCmd() string
2022-02-22 08:34:45 +01:00
// Execute Permet d'exécuter l'action implémentée par une règle
Execute(data string) string
2022-02-22 08:34:45 +01:00
// Match Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
Match(data string) bool
}