Subversion Repositories SmartDukaan

Rev

Rev 5759 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5759 Rev 5781
Line 24... Line 24...
24
 
24
 
25
<update id="updateEntity" parameterType="monitored_entity">
25
<update id="updateEntity" parameterType="monitored_entity">
26
	UPDATE monitored_entity
26
	UPDATE monitored_entity
27
      SET eventType=#{eventType}, warnExpiryTime=#{warnExpiryTime}, 
27
      SET eventType=#{eventType}, warnExpiryTime=#{warnExpiryTime}, 
28
      	criticalExpiryTime=#{criticalExpiryTime}, 
28
      	criticalExpiryTime=#{criticalExpiryTime}, 
29
      	entityProperties=#{entityProperties} 
29
      	entityProperties=#{entityProperties},
-
 
30
      	entityProcessedState = 1 
30
	<where>
31
	<where>
31
  		id = #{id}
32
  		id = #{id}
32
  	</where>   	
33
  	</where>   	
33
</update>
34
</update>
34
 
35