this.newDescription = newDescription1;
}
public String newGroup() {
if (this.newName != null && !this.newName.trim().equals("")) {
Group group = new GroupImpl();
group.setName(this.newName);
group.setDescription(this.newDescription);
CollectionBean collectionBean = (CollectionBean) FacesContext.getCurrentInstance().getApplication().createValueBinding(CollectionBean.BEAN_REF).getValue(FacesContext.getCurrentInstance());
Collection parentCollection = collectionBean.getSelectedCollection();
group.setParent(parentCollection);
GroupDao.createInstance().save(group);
this.newName = null;
this.newDescription = null;