Ajuda com hibernate.query.substitutions

Bem estou tentando usar o hibernate.query.substitutions, para poder mapear um atributo boolean da minha classe.

public class OPCClient {
	private Integer id;
	private String name;
	private String opcServerName;
	private boolean enabled;

        //metodos getters and setters
}
<hibernate-mapping package="pb3.opcclient.bean">
	<class name="OPCClient" table="TAB_OPC_CLIENT" lazy="true">
		<id name="id" column="ID">
			<generator class="increment"/>
		</id>

		<property name="name" column="NAME" length="30" not-null="true"/>
		<property name="opcServerName" column="SERVER_NAME" length="30" not-null="true"/>
		<property name="enabled" column="ENABLED" not-null="true"/>

	</class>
</hibernate-mapping>

Arquivo hibernate.properties

hibernate.query.substitutions true 1, false 0

Eu achei esse exemplo em um tutorial pela internet, mas não funcionou…
Se alguem poder ajudar, estou usando a versão 3.2 do hibernate… vlw!

Cara…

Só por curiosidade, tu tentou fazer uma consulta pra ver se o hibernate não converte isso automático ?

Acho q ele já faz isso

Resolvido…

Como fez pra resolver?
estou com o mesmo problema poderia postar a solução?