if (kommentar == null || kommentar.length() == 0 || this.getID() == null)
return;
try
{
Protokoll entry = (Protokoll) getService().createObject(Protokoll.class,null);
entry.setKonto(this);
entry.setKommentar(kommentar);
entry.setTyp(protokollTyp);
entry.store();
}
catch (Exception e)
{
Logger.error("error while writing protocol", e);
}