private void checkIn(String id, boolean major, String checkinComment) {
LOG.debug("checkIn()");
List<PropertyData<?>> properties = new ArrayList<PropertyData<?>>();
properties.add(objFactory.createPropertyStringData(VERSIONED_PROP, "updated value"));
Properties newProps = objFactory.createPropertiesData(properties);
Holder<String> idHolder = new Holder<String>(id);
verSvc.checkIn(repositoryId, idHolder, major /*major*/, newProps /*properties*/, null /*content*/,
checkinComment, null/*policies*/, null/*addAcl*/, null /*removeAcl*/, null /*extension*/);
renameFiles("checkIn");