Un exemple
module POS {
typedef string Barcode;
interface InputMedia {
typedef string OperatorCmd;
void barcode_input(in Barcode item);
void keypad_input(in OperatorCmd cmd);
};
interface OutputMedia {
boolean output_text(in string string_to_print);
};