* We validate that ' ', '.', ''', '"' is not used in the attribute name as that will break the javascripts later.
*/
public String doUpdateAttribute() throws Exception
{
ConstraintExceptionBuffer ceb = new ConstraintExceptionBuffer();
if(this.newAttributeName.indexOf(" ") > -1 || this.newAttributeName.indexOf(".") > -1 || this.newAttributeName.indexOf("'") > -1 || this.newAttributeName.indexOf("\"") > -1)
{
ceb.add(new ConstraintException("ContentTypeAttribute.updateAction", "3500"));
}
ceb.throwIfNotEmpty();
this.initialize(getContentTypeDefinitionId());
try