/**
* @see java.lang.Object#toString()
*/
public String toString()
{
ToStringBuilder toStringBuilder = new ToStringBuilder(this);
toStringBuilder.append("applicationRootDir", this.getApplicationRootDir());
toStringBuilder.append("tempRootDir", this.getTempRootDir());
toStringBuilder.append("componentRolesLocation", this.componentRolesLocation);
toStringBuilder.append("componentConfigurationLocation", this.componentConfigurationLocation);
toStringBuilder.append("parametersLocation", parametersLocation);
toStringBuilder.append("logger", this.getLogger().getClass().getName());
toStringBuilder.append("hasDynamicProxies", this.hasDynamicProxies);
toStringBuilder.append("containerFlavour", this.containerFlavour);
toStringBuilder.append("componentRolesFlavour", this.componentRolesFlavour);
toStringBuilder.append("isComponentRolesEncrypted", this.isComponentRolesEncrypted);
toStringBuilder.append("isComponentConfigurationEncrypted", this.isComponentConfigurationEncrypted);
toStringBuilder.append("isParametersEncrypted", this.isParametersEncrypted);
return toStringBuilder.toString();
}