Class Update

java.lang.Object
com.atlassian.jira.entity.Update

public class Update extends Object
This class is a fluent builder to create an Update SQL statement to be executed by Entity Engine.

You can run this like:

     Update.into("Project").set("counter", counter).whereEqual("key", projectKey).execute(ofBizDelegator);
 
or:
     entityEngine.execute(
         Update.into("Project").set("counter", counter).whereEqual("key", projectKey)
     );
 
Since:
v5.0
See Also: