Uses of Class
org.tigris.scarab.om.ActivitySet

Packages that use ActivitySet
org.tigris.scarab.notification   
org.tigris.scarab.om   
org.tigris.scarab.tools   
 

Uses of ActivitySet in org.tigris.scarab.notification
 

Methods in org.tigris.scarab.notification with parameters of type ActivitySet
 void ScarabOldNotificationManager.addActivityNotification(ActivityType event, ActivitySet activitySet, Issue issue, ScarabUser fromUser)
          Receives an activitySet from which to generate notification.
 void ScarabOldNotificationManager.addActivityNotification(ActivityType event, ActivitySet activitySet, Issue issue, java.util.Set toUsers, java.util.Set ccUsers, ScarabUser fromUser)
          Long version of the addActivityNotification method, allowing to pass the sets of users involved as 'To' or 'CC'.
 void NotificationManager.addActivityNotification(ActivityType event, ActivitySet activitySet, Issue issue, ScarabUser fromUser)
          This method should add a notification to be processed.
 void NotificationManager.addActivityNotification(ActivityType event, ActivitySet activitySet, Issue issue, java.util.Set toUsers, java.util.Set ccUsers, ScarabUser fromUser)
          Long version of the addActivityNotification method, allowing to pass the sets of users involved as 'To' or 'CC'.
 void ScarabNewNotificationManager.addActivityNotification(ActivityType event, ActivitySet activitySet, Issue issue, ScarabUser fromUser)
          Receives an activitySet from which to generate notification.
 void ScarabNewNotificationManager.addActivityNotification(ActivityType event, ActivitySet activitySet, Issue issue, java.util.Set toUsers, java.util.Set ccUsers, ScarabUser fromUser)
          Long version of the addActivityNotification method, allowing to pass the sets of users involved as 'To' or 'CC'.
 

Uses of ActivitySet in org.tigris.scarab.om
 

Methods in org.tigris.scarab.om that return ActivitySet
 ActivitySet BaseIssue.getActivitySetRelatedByCreatedTransId()
          Returns the associated ActivitySet object.
 ActivitySet BaseIssue.getActivitySetRelatedByCreatedTransId(java.sql.Connection connection)
          Return the associated ActivitySet object If it was not retrieved before, the object is retrieved from the database using the passed connection
 ActivitySet BaseIssue.getActivitySetRelatedByLastTransId()
          Returns the associated ActivitySet object.
 ActivitySet BaseIssue.getActivitySetRelatedByLastTransId(java.sql.Connection connection)
          Return the associated ActivitySet object If it was not retrieved before, the object is retrieved from the database using the passed connection
static ActivitySet BaseActivitySetManager.getInstance()
          Static accessor for the @see #getInstanceImpl().
static ActivitySet BaseActivitySetManager.getInstance(org.apache.torque.om.ObjectKey id)
          Static accessor for the @see #getInstanceImpl(ObjectKey).
static ActivitySet BaseActivitySetManager.getCachedInstance(org.apache.torque.om.ObjectKey id)
          Static accessor for the @see #getCachedInstanceImpl(ObjectKey).
static ActivitySet BaseActivitySetManager.getInstance(org.apache.torque.om.ObjectKey id, boolean fromCache)
          Static accessor for the @see #getInstanceImpl(ObjectKey, boolean).
static ActivitySet BaseActivitySetManager.getInstance(java.lang.Long id)
          Static accessor for the @see #getInstanceImpl(ObjectKey).
static ActivitySet BaseActivitySetManager.getInstance(java.lang.Long id, boolean fromCache)
          Static accessor for the @see #getInstanceImpl(ObjectKey).
protected  ActivitySet BaseActivitySetManager.getInstanceImpl()
          Get a fresh instance of a ActivitySetManager
protected  ActivitySet BaseActivitySetManager.getInstanceImpl(org.apache.torque.om.ObjectKey id)
          Get a ActivitySet with the given id.
protected  ActivitySet BaseActivitySetManager.getCachedInstanceImpl(org.apache.torque.om.ObjectKey id)
          Get a ActivitySet with the given id from the cache.
protected  ActivitySet BaseActivitySetManager.getInstanceImpl(org.apache.torque.om.ObjectKey id, boolean fromCache)
          Get a ActivitySet with the given id.
 ActivitySet BaseActivity.getActivitySet()
          Returns the associated ActivitySet object.
 ActivitySet BaseActivity.getActivitySet(java.sql.Connection connection)
          Return the associated ActivitySet object If it was not retrieved before, the object is retrieved from the database using the passed connection
 ActivitySet Issue.addUrl(Attachment attachment, ScarabUser user)
          Adds a url to an issue and passes null as the activity set to create a new one.
 ActivitySet Issue.addUrl(ActivitySet activitySet, Attachment attachment, ScarabUser user)
          Adds a url to an issue.
 ActivitySet Issue.addComment(Attachment attachment, ScarabUser user)
          Adds a comment to an issue and passes null as the activity set to create a new one.
 ActivitySet Issue.addComment(ActivitySet activitySet, Attachment attachment, ScarabUser user)
          Adds a comment to an issue.
 ActivitySet Issue.doSaveFileAttachments(ScarabUser user)
          Adds an attachment file to this issue.
 ActivitySet Issue.doSaveFileAttachments(ActivitySet activitySet, ScarabUser user)
          Adds an attachment file to this issue.
 ActivitySet Issue.getInitialActivitySet()
          The initial activity set from issue creation.
 ActivitySet Issue.getLastActivitySet()
          The last modification made to the issue.
 ActivitySet Issue.getActivitySet(ScarabUser user, Attachment attachment, java.lang.Integer type)
          Creates a new ActivitySet object for the issue.
 ActivitySet Issue.getActivitySet(ScarabUser user, java.lang.Integer type)
          Creates a new ActivitySet object for the issue.
 ActivitySet Issue.doAddDependency(ActivitySet activitySet, Depend depend, Issue childIssue, ScarabUser user)
           
 ActivitySet Issue.assignUser(ActivitySet activitySet, ScarabUser assignee, ScarabUser assigner, Attribute attribute, Attachment attachment)
          Assigns user to issue.
 ActivitySet Issue.changeUserAttributeValue(ActivitySet activitySet, ScarabUser assignee, ScarabUser assigner, AttributeValue oldAttVal, Attribute newAttr, Attachment attachment)
          Used to change a user attribute value from one user attribute to a new one.
 ActivitySet Issue.deleteUser(ActivitySet activitySet, ScarabUser assignee, ScarabUser assigner, AttributeValue attVal, Attachment attachment)
          Used to delete a user attribute value.
 ActivitySet Issue.doDeleteDependency(ActivitySet activitySet, Depend oldDepend, ScarabUser user)
          Deletes a specific dependency on this issue.
 ActivitySet Issue.doChangeUrlDescription(ActivitySet activitySet, ScarabUser user, Attachment attachment, java.lang.String oldDescription)
          Given a specific attachment object allow us to update the information in it.
 ActivitySet Issue.doChangeUrlUrl(ActivitySet activitySet, ScarabUser user, Attachment attachment, java.lang.String oldUrl)
          Given a specific attachment object allow us to update the information in it.
 ActivitySet Issue.doChangeDependencyType(ActivitySet activitySet, Depend oldDepend, Depend newDepend, ScarabUser user)
          changes the dependency type as well as. will not change deptype for deleted deps
 ActivitySet Issue.setInitialAttributeValues(ActivitySet activitySet, Attachment attachment, java.util.HashMap newValues, ScarabUser user)
          Sets original AttributeValues for an new issue based on a hashmap of values This is data is saved to the database and the proper ActivitySet is also recorded.
 ActivitySet Issue.setAttributeValues(ActivitySet activitySet, java.util.HashMap newAttVals, Attachment attachment, ScarabUser user)
          Sets AttributeValues for an issue based on a hashmap of attribute values This is data is saved to the database and the proper ActivitySet is also recorded.
protected  ActivitySet Issue.attachActivitySet(ActivitySet activitySet, ScarabUser user, Attachment attachment, java.lang.Integer activitySetType)
          Sets an ActivitySet as the lastActivitySet of an Issue.
protected  ActivitySet Issue.attachActivitySet(ActivitySet activitySet, ScarabUser user, Attachment attachment)
           
protected  ActivitySet Issue.attachActivitySet(ActivitySet activitySet, ScarabUser user)
           
 ActivitySet Issue.doEditComment(ActivitySet activitySet, java.lang.String newComment, Attachment attachment, ScarabUser user)
          If the comment hasn't changed, it will return a valid ActivitySet otherwise it returns null.
 ActivitySet Issue.doDeleteUrl(ActivitySet activitySet, Attachment attachment, ScarabUser user)
          If the URL hasn't changed, it will return a valid ActivitySet otherwise it returns null.
 ActivitySet Issue.doRemoveAttachment(ActivitySet activitySet, MutableBoolean physicallyDeleted, Attachment attachment, ScarabUser user)
          Remove the attachment.
static ActivitySet ActivitySetPeer.retrieveByPK(org.apache.torque.om.ObjectKey pk)
          Retrieve a single object by pk
 ActivitySet BaseActivitySet.copy()
          Makes a copy of this object.
protected  ActivitySet BaseActivitySet.copyInto(ActivitySet copyObj)
           
static ActivitySet BaseActivitySetPeer.row2Object(com.workingdogs.village.Record row, int offset, java.lang.Class cls)
          Create a new object of type cls from a resultset row starting from a specified offset.
static ActivitySet BaseActivitySetPeer.retrieveByPK(java.lang.Long pk)
          Retrieve a single object by pk
static ActivitySet BaseActivitySetPeer.retrieveByPK(java.lang.Long pk, java.sql.Connection con)
          Retrieve a single object by pk
static ActivitySet BaseActivitySetPeer.retrieveByPK(org.apache.torque.om.ObjectKey pk)
          Retrieve a single object by pk
static ActivitySet BaseActivitySetPeer.retrieveByPK(org.apache.torque.om.ObjectKey pk, java.sql.Connection con)
          Retrieve a single object by pk
static ActivitySet ActivitySetManager.getInstance(java.lang.String key)
          Gets a new ActivitySet object by the ActivitySetId String
static ActivitySet ActivitySetManager.getInstance(java.lang.Integer key)
          Gets a new ActivitySet object by the ActivitySetId Integer
static ActivitySet ActivitySetManager.getInstance(ActivitySetType tt, ScarabUser user)
          Populates a new activitySet object.
static ActivitySet ActivitySetManager.getInstance(ActivitySetType tt, ScarabUser user, Attachment attachment)
          Populates a new activitySet object.
static ActivitySet ActivitySetManager.getInstance(java.lang.Integer typeId, ScarabUser user)
          Populates a new activitySet object.
static ActivitySet ActivitySetManager.getInstance(java.lang.Integer typeId, ScarabUser user, Attachment attachment)
          Populates a new activitySet object.
 

Methods in org.tigris.scarab.om with parameters of type ActivitySet
 void BaseIssue.setActivitySetRelatedByCreatedTransId(ActivitySet v)
          Declares an association between this object and a ActivitySet object
 void BaseIssue.setActivitySetRelatedByLastTransId(ActivitySet v)
          Declares an association between this object and a ActivitySet object
 Activity Activity.copy(Issue issue, ActivitySet activitySet)
           
static boolean BaseActivitySetManager.exists(ActivitySet obj)
           
protected  boolean BaseActivitySetManager.existsImpl(ActivitySet om)
          check for a duplicate project name
 void BaseScarabUserImpl.addActivitySet(ActivitySet l)
          Method called to associate a ActivitySet object to this object through the ActivitySet foreign key attribute
static Activity ActivityManager.createNumericActivity(Issue issue, Attribute attribute, ActivitySet activitySet, Attachment attachment, java.lang.Integer oldNumericValue, java.lang.Integer newNumericValue)
           
static Activity ActivityManager.createUserActivity(Issue issue, Attribute attribute, ActivitySet activitySet, Attachment attachment, java.lang.Integer oldUserId, java.lang.Integer newUserId)
           
static Activity ActivityManager.createAddDependencyActivity(Issue issue, ActivitySet activitySet, Depend depend)
           
static Activity ActivityManager.createChangeDependencyActivity(Issue issue, ActivitySet activitySet, Depend depend, java.lang.String oldTextValue, java.lang.String newTextValue)
           
static Activity ActivityManager.createDeleteDependencyActivity(Issue issue, ActivitySet activitySet, Depend depend)
           
static Activity ActivityManager.createTextActivity(Issue issue, ActivitySet activitySet, ActivityType type, java.lang.String newTextValue)
           
static Activity ActivityManager.createTextActivity(Issue issue, ActivitySet activitySet, ActivityType type, Attachment attachment)
           
static Activity ActivityManager.createTextActivity(Issue issue, Attribute attribute, ActivitySet activitySet, ActivityType type, java.lang.String oldTextValue, java.lang.String newTextValue)
           
static Activity ActivityManager.createTextActivity(Issue issue, ActivitySet activitySet, ActivityType type, Attachment attachment, java.lang.String oldTextValue, java.lang.String newTextValue)
           
static Activity ActivityManager.createTextActivity(Issue issue, Attribute attribute, ActivitySet activitySet, ActivityType type, java.lang.String description, Attachment attachment, java.lang.String oldTextValue, java.lang.String newTextValue)
           
static Activity ActivityManager.createReportIssueActivity(Issue issue, ActivitySet activitySet, java.lang.String message)
          Populates a new Activity object for initial issue creation.
static Activity ActivityManager.createDeleteIssueActivity(Issue issue, ActivitySet activitySet)
          Populates a new Activity for issue deletion
static Activity ActivityManager.create(Issue issue, Attribute attribute, ActivitySet activitySet, ActivityType type, java.lang.String description, Attachment attachment, java.lang.Integer oldNumericValue, java.lang.Integer newNumericValue, java.lang.Integer oldUserId, java.lang.Integer newUserId, java.lang.Integer oldOptionId, java.lang.Integer newOptionId, java.lang.String oldTextValue, java.lang.String newTextValue)
          Populates a new Activity object.
static Activity ActivityManager.create(Issue issue, Attribute attribute, ActivitySet activitySet, ActivityType type, java.lang.String description, Attachment attachment, java.lang.Integer oldNumericValue, java.lang.Integer newNumericValue, java.lang.Integer oldUserId, java.lang.Integer newUserId, java.lang.Integer oldOptionId, java.lang.Integer newOptionId, java.lang.String oldTextValue, java.lang.String newTextValue, java.sql.Connection dbCon)
          Populates a new Activity object.
static Activity ActivityManager.create(Issue issue, Attribute attribute, ActivitySet activitySet, ActivityType type, java.lang.String description, Attachment attachment, Depend depend, java.lang.Integer oldNumericValue, java.lang.Integer newNumericValue, java.lang.Integer oldUserId, java.lang.Integer newUserId, java.lang.Integer oldOptionId, java.lang.Integer newOptionId, java.lang.String oldTextValue, java.lang.String newTextValue, java.sql.Connection dbCon)
          Populates a new Activity object.
 void BaseActivity.setActivitySet(ActivitySet v)
          Declares an association between this object and a ActivitySet object
 ActivitySet Issue.addUrl(ActivitySet activitySet, Attachment attachment, ScarabUser user)
          Adds a url to an issue.
 ActivitySet Issue.addComment(ActivitySet activitySet, Attachment attachment, ScarabUser user)
          Adds a comment to an issue.
 ActivitySet Issue.doSaveFileAttachments(ActivitySet activitySet, ScarabUser user)
          Adds an attachment file to this issue.
 ActivitySet Issue.doAddDependency(ActivitySet activitySet, Depend depend, Issue childIssue, ScarabUser user)
           
 ActivitySet Issue.assignUser(ActivitySet activitySet, ScarabUser assignee, ScarabUser assigner, Attribute attribute, Attachment attachment)
          Assigns user to issue.
 ActivitySet Issue.changeUserAttributeValue(ActivitySet activitySet, ScarabUser assignee, ScarabUser assigner, AttributeValue oldAttVal, Attribute newAttr, Attachment attachment)
          Used to change a user attribute value from one user attribute to a new one.
 ActivitySet Issue.deleteUser(ActivitySet activitySet, ScarabUser assignee, ScarabUser assigner, AttributeValue attVal, Attachment attachment)
          Used to delete a user attribute value.
 ActivitySet Issue.doDeleteDependency(ActivitySet activitySet, Depend oldDepend, ScarabUser user)
          Deletes a specific dependency on this issue.
 ActivitySet Issue.doChangeUrlDescription(ActivitySet activitySet, ScarabUser user, Attachment attachment, java.lang.String oldDescription)
          Given a specific attachment object allow us to update the information in it.
 ActivitySet Issue.doChangeUrlUrl(ActivitySet activitySet, ScarabUser user, Attachment attachment, java.lang.String oldUrl)
          Given a specific attachment object allow us to update the information in it.
 ActivitySet Issue.doChangeDependencyType(ActivitySet activitySet, Depend oldDepend, Depend newDepend, ScarabUser user)
          changes the dependency type as well as. will not change deptype for deleted deps
 ActivitySet Issue.setInitialAttributeValues(ActivitySet activitySet, Attachment attachment, java.util.HashMap newValues, ScarabUser user)
          Sets original AttributeValues for an new issue based on a hashmap of values This is data is saved to the database and the proper ActivitySet is also recorded.
 ActivitySet Issue.setAttributeValues(ActivitySet activitySet, java.util.HashMap newAttVals, Attachment attachment, ScarabUser user)
          Sets AttributeValues for an issue based on a hashmap of attribute values This is data is saved to the database and the proper ActivitySet is also recorded.
protected  ActivitySet Issue.attachActivitySet(ActivitySet activitySet, ScarabUser user, Attachment attachment, java.lang.Integer activitySetType)
          Sets an ActivitySet as the lastActivitySet of an Issue.
protected  ActivitySet Issue.attachActivitySet(ActivitySet activitySet, ScarabUser user, Attachment attachment)
           
protected  ActivitySet Issue.attachActivitySet(ActivitySet activitySet, ScarabUser user)
           
 ActivitySet Issue.doEditComment(ActivitySet activitySet, java.lang.String newComment, Attachment attachment, ScarabUser user)
          If the comment hasn't changed, it will return a valid ActivitySet otherwise it returns null.
 ActivitySet Issue.doDeleteUrl(ActivitySet activitySet, Attachment attachment, ScarabUser user)
          If the URL hasn't changed, it will return a valid ActivitySet otherwise it returns null.
 ActivitySet Issue.doRemoveAttachment(ActivitySet activitySet, MutableBoolean physicallyDeleted, Attachment attachment, ScarabUser user)
          Remove the attachment.
 void BaseAttachment.addActivitySet(ActivitySet l)
          Method called to associate a ActivitySet object to this object through the ActivitySet foreign key attribute
 void BaseActivitySetType.addActivitySet(ActivitySet l)
          Method called to associate a ActivitySet object to this object through the ActivitySet foreign key attribute
protected  ActivitySet BaseActivitySet.copyInto(ActivitySet copyObj)
           
 void AttributeValue.startActivitySet(ActivitySet activitySet)
          Enters this attribute value into a activitySet.
static void BaseActivitySetPeer.populateObject(com.workingdogs.village.Record row, int offset, ActivitySet obj)
          Populates an object from a resultset row starting from a specified offset.
static java.util.List BaseActivitySetPeer.doSelect(ActivitySet obj)
          Method to do selects
static void BaseActivitySetPeer.doInsert(ActivitySet obj)
          Method to do inserts
static void BaseActivitySetPeer.doUpdate(ActivitySet obj)
           
static void BaseActivitySetPeer.doDelete(ActivitySet obj)
           
static void BaseActivitySetPeer.doInsert(ActivitySet obj, java.sql.Connection con)
          Method to do inserts.
static void BaseActivitySetPeer.doUpdate(ActivitySet obj, java.sql.Connection con)
          Method to do update.
static void BaseActivitySetPeer.doDelete(ActivitySet obj, java.sql.Connection con)
          Method to delete.
static org.apache.torque.util.Criteria BaseActivitySetPeer.buildCriteria(ActivitySet obj)
          Build a Criteria object from the data object for this peer
static org.apache.torque.util.Criteria BaseActivitySetPeer.buildSelectCriteria(ActivitySet obj)
          Build a Criteria object from the data object for this peer, skipping all binary columns
 

Uses of ActivitySet in org.tigris.scarab.tools
 

Methods in org.tigris.scarab.tools with parameters of type ActivitySet
 java.lang.String ScarabToolManager.getActivityReason(ActivitySet activitySet, Activity activity)
          Deprecated. Use ActivitySet.getActivityReason(l10n) instead.
 



Copyright © 2000-2004 Tigris.org. All Rights Reserved.