Skip to content
Snippets Groups Projects
Commit 92fd84c6 authored by Hendrik Buschmeier's avatar Hendrik Buschmeier
Browse files

Added constructors to LocalMessageIU.

parent 58489d0d
No related branches found
No related tags found
No related merge requests found
package ipaaca;
/**
* Local IU of Message sub-type. Can be handled like a normal IU, but on the remote side it is only existent during the handler calls.
* @author hvanwelbergen
......@@ -7,4 +8,14 @@ package ipaaca;
public class LocalMessageIU extends LocalIU
{
public LocalMessageIU()
{
super();
}
public LocalMessageIU(String category)
{
super(category);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment