* Sets the format of SampleObject {@link #identifiedRecord} to the currently selected format
* of all {@link #possibleFormats}.
*/
public void changeFormat(){
if ((selectedFormat.getValue() != null) && (identifiedRecord != null)) {
FormatHit hit = possibleFormats.get(selectedFormat.getValue());
if (hit != null) {
identifiedRecord.getFormatInfo().assignValues(hit.getFormat());
identifiedRecord.touch();
// FacesContext context = FacesContext.getCurrentInstance();
// context.renderResponse();
log.warn("format changed to: "+selectedFormat.getValue());
}