Package com.atlassian.jira.entity
Class Update
java.lang.Object
com.atlassian.jira.entity.Update
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:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic class - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic Update.IntoContextinto(EntityFactory entityFactory) static Update.IntoContext 
- 
Constructor Details
- 
Update
public Update() 
 - 
 - 
Method Details
- 
into
 - 
into
 
 -