*/
public ItemIF createItem(ChannelIF channel, ItemIF ethalon)
throws PersistenceManagerException {
// Create item by copying another's properties and save
final ItemIF item = new Item(channel, null, null, null);
InformaUtils.copyItemProperties(ethalon, item);
saveCreatedItem(channel, item);
return item;