Modifier and Type | Method and Description |
---|---|
org.ofbiz.core.entity.GenericValue |
NodeAssociationStoreImpl.createAssociation(org.ofbiz.core.entity.GenericValue source,
org.ofbiz.core.entity.GenericValue sink,
String associationType)
Create an association between two entities, given a particular association type.
|
org.ofbiz.core.entity.GenericValue |
NodeAssociationStore.createAssociation(org.ofbiz.core.entity.GenericValue source,
org.ofbiz.core.entity.GenericValue sink,
String associationType)
Create an association between two entities, given a particular association type.
|
org.ofbiz.core.entity.GenericValue |
NodeAssociationStoreImpl.createAssociation(String sourceNodeEntity,
Long sourceNodeId,
String sinkNodeEntity,
Long sinkNodeId,
String associationType) |
org.ofbiz.core.entity.GenericValue |
NodeAssociationStore.createAssociation(String sourceNodeEntity,
Long sourceNodeId,
String sinkNodeEntity,
Long sinkNodeId,
String associationType)
Create an association between two entities, given a particular association type.
|
org.ofbiz.core.entity.GenericValue |
NodeAssociationStoreImpl.getAssociation(org.ofbiz.core.entity.GenericValue source,
org.ofbiz.core.entity.GenericValue sink,
String associationType) |
org.ofbiz.core.entity.GenericValue |
NodeAssociationStore.getAssociation(org.ofbiz.core.entity.GenericValue source,
org.ofbiz.core.entity.GenericValue sink,
String associationType) |
List<org.ofbiz.core.entity.GenericValue> |
NodeAssociationStoreImpl.getSinksFromSource(org.ofbiz.core.entity.GenericValue source,
String sinkEntityName,
String associationType) |
List<org.ofbiz.core.entity.GenericValue> |
NodeAssociationStore.getSinksFromSource(org.ofbiz.core.entity.GenericValue source,
String sinkEntityName,
String associationType)
Operates on NodeAssociations - gets MANY sinks from ONE source
|
List<org.ofbiz.core.entity.GenericValue> |
NodeAssociationStoreImpl.getSourcesFromSink(org.ofbiz.core.entity.GenericValue sink,
String sourceName,
String associationType) |
List<org.ofbiz.core.entity.GenericValue> |
NodeAssociationStore.getSourcesFromSink(org.ofbiz.core.entity.GenericValue sink,
String sourceName,
String associationType)
Operates on NodeAssociations - gets MANY sources from ONE sink
|
void |
NodeAssociationStoreImpl.removeAssociation(org.ofbiz.core.entity.GenericValue source,
org.ofbiz.core.entity.GenericValue sink,
String associationType) |
void |
NodeAssociationStore.removeAssociation(org.ofbiz.core.entity.GenericValue source,
org.ofbiz.core.entity.GenericValue sink,
String associationType) |
void |
NodeAssociationStoreImpl.removeAssociationsFromSink(org.ofbiz.core.entity.GenericValue sink) |
void |
NodeAssociationStore.removeAssociationsFromSink(org.ofbiz.core.entity.GenericValue sink)
Remove all entity<->entity associations, given the sink.
|
void |
NodeAssociationStoreImpl.removeAssociationsFromSource(org.ofbiz.core.entity.GenericValue source) |
void |
NodeAssociationStoreImpl.swapAssociation(List<org.ofbiz.core.entity.GenericValue> entities,
String associationType,
org.ofbiz.core.entity.GenericValue fromSink,
org.ofbiz.core.entity.GenericValue toSink) |
void |
NodeAssociationStore.swapAssociation(List<org.ofbiz.core.entity.GenericValue> entities,
String associationType,
org.ofbiz.core.entity.GenericValue fromSink,
org.ofbiz.core.entity.GenericValue toSink)
Swaps all associations for a given list of entities (say move a list of unresolved issue entities to a new fix for version)
|
void |
NodeAssociationStoreImpl.swapAssociation(String sourceEntityName,
String associationType,
org.ofbiz.core.entity.GenericValue fromSink,
org.ofbiz.core.entity.GenericValue toSink) |
void |
NodeAssociationStore.swapAssociation(String sourceEntityType,
String associationType,
org.ofbiz.core.entity.GenericValue oldSink,
org.ofbiz.core.entity.GenericValue newSink)
Swap all associations of a particular type from one sink to another.
|
Modifier and Type | Method and Description |
---|---|
Avatar |
AvatarStore.create(Avatar avatar)
Creates an avatar with the properties of the given avatar.
|
Avatar |
AvatarManager.create(Avatar avatar)
Creates a database record for the given avatar.
|
Avatar |
AvatarManagerImpl.create(Avatar avatar,
InputStream imageData,
Selection croppingSelection) |
Avatar |
AvatarManager.create(Avatar avatar,
InputStream image,
Selection selection)
Creates a database record for the given avatar and uses the content of the InputStream as the image.
|
Avatar |
AvatarManagerImpl.create(String fileName,
String contentType,
ApplicationUser owner,
InputStream imageData,
Selection croppingSelection) |
Avatar |
AvatarManager.create(String fileName,
String contentType,
ApplicationUser owner,
InputStream image,
Selection selection)
Deprecated.
|
Avatar |
AvatarManagerImpl.create(String fileName,
String contentType,
IconType iconType,
IconOwningObjectId owner,
InputStream imageData,
Selection croppingSelection) |
Avatar |
AvatarManager.create(String fileName,
String contentType,
IconType iconType,
IconOwningObjectId owner,
InputStream image,
Selection selection)
Creates a database record for the given avatar and uses the content of the InputStream as the image.
|
Avatar |
AvatarManagerImpl.create(String fileName,
String contentType,
Project project,
InputStream imageData,
Selection croppingSelection) |
Avatar |
AvatarManager.create(String fileName,
String contentType,
Project owner,
InputStream image,
Selection selection)
Deprecated.
|
boolean |
AvatarStore.delete(Long avatarId)
Permanently removes the avatar from the system.
|
boolean |
AvatarManager.delete(Long avatarId)
Delete the avatar with the given id and the file on disk.
|
List<Avatar> |
AvatarManager.getAllSystemAvatars(Avatar.Type type)
Deprecated.
Use
AvatarManager.getAllSystemAvatars(IconType) instead. Since v7.1 |
List<Avatar> |
AvatarStore.getAllSystemAvatars(IconType iconType)
Provides a list of all system avatars.
|
List<Avatar> |
AvatarManager.getAllSystemAvatars(IconType iconType)
Provides a list of all system avatars.
|
Avatar |
AvatarStore.getById(Long avatarId)
Retrieves the Avatar by id.
|
Avatar |
AvatarManager.getById(Long avatarId)
Retrieve the avatar with the given id.
|
Avatar |
AvatarManager.getByIdTagged(Long avatarId)
Retrieve the avatar with the given id,
ensuring the avatar file is tagged with metadata identifying the image came from JIRA.
|
List<Avatar> |
AvatarManager.getCustomAvatarsForOwner(Avatar.Type type,
String ownerId)
Deprecated.
there can only be one. Since v6.4.
|
List<Avatar> |
AvatarStore.getCustomAvatarsForOwner(IconType iconType,
String ownerId)
Provides a list of all avatars that are of the given type which have the given owner.
|
List<Avatar> |
AvatarManager.getCustomAvatarsForOwner(IconType iconType,
String ownerId)
Provides a list of all avatars that are of the given type which have the given owner.
|
List<Avatar> |
CachingTaggingAvatarStore.getSystemAvatarsForFilename(IconType iconType,
String filename) |
List<Avatar> |
AvatarStore.getSystemAvatarsForFilename(IconType iconType,
String filename)
Get the system icon with a particular filename.
|
void |
AvatarStore.update(Avatar avatar)
Updates an avatar's properties to match those in the given avatar.
|
void |
AvatarManager.update(Avatar avatar)
Saves the avatar as an updated version of the avatar with the same id that is already in the database.
|
Modifier and Type | Method and Description |
---|---|
ApplicationProperty |
ApplicationPropertiesService.getApplicationProperty(String key)
Retrieves a property with the given key.
|
List<ApplicationProperty> |
ApplicationPropertiesServiceImpl.getEditableAdvancedProperties() |
List<ApplicationProperty> |
ApplicationPropertiesService.getEditableAdvancedProperties()
Retrieves all properties that can be edited by the user on the "General Configuration > Advanced Settings" page.
|
List<ApplicationProperty> |
ApplicationPropertiesServiceImpl.getEditableApplicationProperties(ApplicationPropertiesService.EditPermissionLevel permissionLevel,
String keyFilter) |
List<ApplicationProperty> |
ApplicationPropertiesService.getEditableApplicationProperties(ApplicationPropertiesService.EditPermissionLevel permissionLevel,
String keyFilter)
Retrieves all properties that can be edited dynamically by the user.
|
List<ApplicationProperty> |
ApplicationPropertiesService.getEditableApplicationProperties(String permissionLevel,
String keyFilter)
Retrieves all properties that can be edited dynamically by the user.
|
Validated<ApplicationProperty> |
ApplicationPropertiesService.setApplicationProperty(String key,
String value)
Stores the given value for the given key in the underlying data store.
|
Modifier and Type | Method and Description |
---|---|
ServiceOutcome<CustomField> |
CustomFieldService.create(CreateValidationResult createValidationResult)
Creates a custom field using a
CreateValidationResult as parameter. |
Modifier and Type | Method and Description |
---|---|
MutableProjectComponent |
CachingProjectComponentStore.store(MutableProjectComponent component)
Persist the component.
|
MutableProjectComponent |
OfBizProjectComponentStore.store(MutableProjectComponent component)
Persists the component.
|
Modifier and Type | Method and Description |
---|---|
void |
FeatureStore.create(String featureName,
String userKey)
Creates an feature with the properties of the given feature.
|
void |
DefaultFeatureStore.create(String featureKey,
String userKey) |
void |
FeatureStore.delete(String featureKey,
String userKey)
Permanently removes the feature from the system.
|
void |
DefaultFeatureStore.delete(String featureKey,
String userKey) |
Set<String> |
FeatureStore.getSiteFeatures()
Returns a list of all enabled site features
|
Set<String> |
DefaultFeatureStore.getSiteFeatures() |
Set<String> |
FeatureStore.getUserFeatures(String userKey)
Returns a list of all enabled features for a user
|
Set<String> |
DefaultFeatureStore.getUserFeatures(String userKey) |
void |
DefaultSubTaskManager.moveSubTaskIssueTypeDown(String id) |
void |
SubTaskManager.moveSubTaskIssueTypeDown(String id) |
void |
DefaultSubTaskManager.moveSubTaskIssueTypeUp(String id) |
void |
SubTaskManager.moveSubTaskIssueTypeUp(String id) |
void |
DefaultConstantsManager.storeIssueTypes(List<org.ofbiz.core.entity.GenericValue> issueTypes) |
void |
ConstantsManager.storeIssueTypes(List<org.ofbiz.core.entity.GenericValue> issueTypes)
Deprecated.
Deprecated since v7.0. Use $
ConstantsManager.updateIssueType(String, String, Long, String, String, Long) or
$ConstantsManager.recalculateIssueTypeSequencesAndStore(java.util.List) instead. |
void |
DefaultConstantsManager.updateIssueType(String id,
String name,
Long sequence,
String style,
String description,
Long avatarId) |
void |
DefaultConstantsManager.updateIssueType(String id,
String name,
Long sequence,
String style,
String description,
String iconurl) |
void |
ConstantsManager.updateIssueType(String id,
String name,
Long sequence,
String style,
String description,
String iconurl)
Deprecated.
|
void |
MockSubTaskManager.updateSubTaskIssueType(String id,
String name,
Long sequence,
String description,
Long avatarId) |
void |
DefaultSubTaskManager.updateSubTaskIssueType(String id,
String name,
Long sequence,
String description,
Long avatarId) |
void |
SubTaskManager.updateSubTaskIssueType(String id,
String name,
Long sequence,
String description,
Long avatarId)
Update existing sub-task issue type.
|
void |
DefaultSubTaskManager.updateSubTaskIssueType(String id,
String name,
Long sequence,
String description,
String iconurl) |
void |
SubTaskManager.updateSubTaskIssueType(String id,
String name,
Long sequence,
String description,
String iconurl)
Deprecated.
Use
SubTaskManager.updateSubTaskIssueType(String, String, Long, String, Long) instead. Since v6.3. |
Modifier and Type | Method and Description |
---|---|
org.ofbiz.core.entity.GenericValue |
LockedDatabaseOfBizDelegator.createValue(String entity,
Map params) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findAll(String s) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findAll(String s,
List sortOrder) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findByAnd(String s,
List expressions) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findByAnd(String s,
Map map) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findByAnd(String s,
Map map,
List orderClause) |
org.ofbiz.core.entity.GenericValue |
LockedDatabaseOfBizDelegator.findById(String entityName,
Long id) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findByLike(String s,
Map map) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findByLike(String s,
Map map,
List orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.findByOr(String entityName,
List expressions,
List orderBy) |
long |
LockedDatabaseOfBizDelegator.getCount(String entityName) |
List<org.ofbiz.core.entity.GenericValue> |
LockedDatabaseOfBizDelegator.getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv,
List<String> orderBy) |
void |
LockedDatabaseOfBizDelegator.removeAll(List genericValues) |
int |
LockedDatabaseOfBizDelegator.removeByAnd(String s,
Map map) |
int |
LockedDatabaseOfBizDelegator.removeByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition condition) |
int |
LockedDatabaseOfBizDelegator.removeValue(org.ofbiz.core.entity.GenericValue value) |
void |
LockedDatabaseOfBizDelegator.store(org.ofbiz.core.entity.GenericValue gv) |
void |
LockedDatabaseOfBizDelegator.storeAll(List genericValues) |
Modifier and Type | Method and Description |
---|---|
Attachment |
AttachmentManager.getAttachment(Long id)
Get a single attachment by its ID.
|
List<Attachment> |
AttachmentManager.getAttachments(Issue issue)
Get a list of all attachments for a certain issue.
|
List<Attachment> |
AttachmentManager.getAttachments(Issue issue,
Comparator<? super Attachment> comparator)
Get a list of all attachments for a certain issue, sorted according to the specified comparator.
|
org.ofbiz.core.entity.GenericValue |
IssueManager.getIssue(Long id)
Deprecated.
Use
IssueManager.getIssueObject(Long) instead. |
MutableIssue |
IssueManager.getIssueByCurrentKey(String key)
Retrieves the
Issue that has the given key, or null if no such Issue exists. |
MutableIssue |
IssueManager.getIssueByKeyIgnoreCase(String key)
Retrieves the
Issue that has the given key, or null if no such Issue exists. |
MutableIssue |
IssueManager.getIssueObject(Long id)
Retrieves an issue by id.
|
MutableIssue |
IssueManager.getIssueObject(String key)
Retrieves the
Issue that has the given key, or null if no such Issue exists. |
Modifier and Type | Method and Description |
---|---|
File |
BackwardCompatibleAttachmentStore.getAttachmentFile(Attachment attachment) |
File |
AttachmentStore.getAttachmentFile(Attachment attachment)
Deprecated.
Returns the physical File for the given Attachment.
|
File |
FileBasedAttachmentStore.getAttachmentFile(AttachmentKey attachmentKey)
Returns the physical File for the given Attachment.
|
File |
BackwardCompatibleAttachmentStore.getAttachmentFile(Issue issue,
Attachment attachment) |
File |
AttachmentStore.getAttachmentFile(Issue issue,
Attachment attachment)
Deprecated.
Returns the physical File for the given Attachment.
|
Modifier and Type | Method and Description |
---|---|
File |
DefaultFileSystemAttachmentStore.getAttachmentFile(AttachmentKey attachmentKey)
Returns the physical File for the given attachment key.
|
Modifier and Type | Method and Description |
---|---|
Comment |
DefaultCommentManager.create(Issue issue,
ApplicationUser author,
ApplicationUser updateAuthor,
String body,
String groupLevel,
Long roleLevelId,
Date created,
Date updated,
boolean dispatchEvent) |
Comment |
DefaultCommentManager.create(Issue issue,
ApplicationUser author,
String body,
String groupLevel,
Long roleLevelId,
boolean dispatchEvent) |
Comment |
DefaultCommentManager.create(Issue issue,
ApplicationUser author,
String body,
String groupLevel,
Long roleLevelId,
Date created,
boolean dispatchEvent) |
Modifier and Type | Method and Description |
---|---|
Set<Long> |
ImmutableCustomField.remove() |
Modifier and Type | Method and Description |
---|---|
org.ofbiz.core.entity.GenericValue |
DefaultIssueManager.getIssue(Long id) |
org.ofbiz.core.entity.GenericValue |
RequestCachingIssueManager.getIssue(Long id)
Deprecated.
|
MutableIssue |
DefaultIssueManager.getIssueByCurrentKey(String key) |
MutableIssue |
RequestCachingIssueManager.getIssueByCurrentKey(String key) |
MutableIssue |
DefaultIssueManager.getIssueByKeyIgnoreCase(String key) |
MutableIssue |
RequestCachingIssueManager.getIssueByKeyIgnoreCase(String key) |
MutableIssue |
DefaultIssueManager.getIssueObject(Long id) |
MutableIssue |
RequestCachingIssueManager.getIssueObject(Long id) |
MutableIssue |
DefaultIssueManager.getIssueObject(String key) |
MutableIssue |
RequestCachingIssueManager.getIssueObject(String key) |
Modifier and Type | Method and Description |
---|---|
void |
IssueSecuritySchemeManagerImpl.deleteEntity(Long id) |
Scheme |
IssueSecuritySchemeManager.getSchemeObject(Long id)
Deprecated.
Use
IssueSecuritySchemeManager.getIssueSecurityLevelScheme(Long) instead. Since v5.2. |
Modifier and Type | Method and Description |
---|---|
void |
DefaultSubscriptionManager.updateSubscription(ApplicationUser user,
Long subId,
String groupName,
String cronExpression,
Boolean emailOnEmpty) |
void |
SubscriptionManager.updateSubscription(ApplicationUser user,
Long subscriptionId,
String groupName,
String cronExpression,
Boolean emailOnEmpty) |
Modifier and Type | Method and Description |
---|---|
boolean |
DisabledThumbNailManager.isThumbnailable(Attachment attachment) |
boolean |
DisabledThumbNailManager.isThumbnailable(Issue issue,
Attachment attachment) |
Modifier and Type | Method and Description |
---|---|
void |
OfbizVoteHistoryStore.add(VoteHistoryEntry entry) |
void |
VoteHistoryStore.add(VoteHistoryEntry entry)
Creates an issue history entry
|
void |
OfbizVoteHistoryStore.delete(String issueId) |
void |
VoteHistoryStore.delete(String issueId)
Remove all the vote history for an issue.
|
List<VoteHistoryEntry> |
VoteHistoryStore.getHistory(Long issueId)
Retrieve the vote history for an issue
|
Modifier and Type | Method and Description |
---|---|
List<String> |
DefaultWatcherManager.getCurrentWatcherUsernames(Issue issue) |
List<String> |
WatcherManager.getCurrentWatcherUsernames(Issue issue)
Retrieve the list of usernames of users watching the given issue
|
Modifier and Type | Method and Description |
---|---|
org.ofbiz.core.entity.GenericValue |
MockIssueManager.getIssue(Long id) |
MutableIssue |
MockIssueManager.getIssueByCurrentKey(String key) |
MutableIssue |
MockIssueManager.getIssueByKeyIgnoreCase(String key) |
MutableIssue |
MockIssueManager.getIssueObject(Long id) |
MutableIssue |
MockIssueManager.getIssueObject(String key) |
long |
MockProjectManager.getNextId(Project project) |
ProjectCategory |
MockProjectManager.getProjectCategoryObject(Long id) |
long |
MockProjectManager.getProjectCount() |
Collection<Project> |
MockProjectManager.getProjectsFromProjectCategory(ProjectCategory projectCategory) |
void |
MockProjectManager.updateProjectCategory(ProjectCategory projectCategory) |
Modifier and Type | Method and Description |
---|---|
org.ofbiz.core.entity.GenericValue |
MockOfBizDelegator.createValue(String entity,
Map<String,Object> params) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findAll(String s,
List<String> sortOrder) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByAnd(String s,
List<org.ofbiz.core.entity.EntityCondition> expressions) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByAnd(String s,
Map<String,?> map) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByAnd(String s,
Map<String,?> map,
List<String> orderClause) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy) |
org.ofbiz.core.entity.GenericValue |
MockOfBizDelegator.findById(String entityName,
Long id) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByLike(String entityName,
Map<String,?> map) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByLike(String entityName,
Map<String,?> map,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
MockOfBizDelegator.findByOr(String entityName,
List<? extends org.ofbiz.core.entity.EntityCondition> expressions,
List<String> orderBy) |
void |
MockOfBizDelegator.removeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
int |
MockOfBizDelegator.removeByAnd(String s,
Map<String,?> map) |
int |
MockOfBizDelegator.removeByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition condition) |
void |
MockOfBizDelegator.store(org.ofbiz.core.entity.GenericValue gv) |
void |
MockOfBizDelegator.storeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
Modifier and Type | Method and Description |
---|---|
int |
WrappingOfBizDelegator.bulkCopyColumnValuesByAnd(String entityName,
Map updateColumns,
Map criteria) |
int |
OfBizDelegator.bulkCopyColumnValuesByAnd(String entityName,
Map updateColumns,
Map criteria)
This can be used to perform an update on the entityName of all the rows
identified by AND criteria of the fields specified by the criteria map.
|
int |
WrappingOfBizDelegator.bulkUpdateByAnd(String entityName,
Map<String,?> updateValues,
Map<String,?> criteria) |
int |
OfBizDelegator.bulkUpdateByAnd(String entityName,
Map<String,?> updateValues,
Map<String,?> criteria)
This can be used to perform an update on the entityName of all the rows
identified by AND criteria of the fields specified by the criteria map.
|
int |
WrappingOfBizDelegator.bulkUpdateByPrimaryKey(String entityName,
Map<String,?> updateValues,
List<Long> keys) |
int |
OfBizDelegator.bulkUpdateByPrimaryKey(String entityName,
Map<String,?> updateValues,
List<Long> keys)
This can be used to perform an update on the entityName of all the rows
identified by the keys with the values stored in the updateValues.
|
org.ofbiz.core.entity.GenericValue |
WrappingOfBizDelegator.createValue(String entityName,
Map<String,Object> fields) |
org.ofbiz.core.entity.GenericValue |
OfBizDelegator.createValue(String entityName,
Map<String,Object> fields)
Creates a new GenericValue, and persists it.
|
void |
DefaultOfBizDelegator.createValueWithoutId(String entityName,
Map<String,Object> fields) |
void |
OfBizDelegator.createValueWithoutId(String entityName,
Map<String,Object> fields)
Creates a new GenericValue, and persists it without trying to automatically populate the ID column.
|
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findAll(String s) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findAll(String s) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findAll(String s,
List sortOrder) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findAll(String s,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findAll(String s,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByAnd(String entityName,
List<org.ofbiz.core.entity.EntityCondition> expressions) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findByAnd(String entityName,
List<org.ofbiz.core.entity.EntityCondition> expressions) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByAnd(String entityName,
List<org.ofbiz.core.entity.EntityCondition> expressions) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByAnd(String entityName,
Map<String,?> fields) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findByAnd(String entityName,
Map<String,?> fields) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByAnd(String entityName,
Map<String,?> fields)
Finds GenericValue records by all of the specified fields (ie: combined using AND).
|
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByAnd(String entityName,
Map<String,?> fields,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findByAnd(String entityName,
Map<String,?> fields,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByAnd(String entityName,
Map<String,?> fields,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect)
Finds GenericValues by the conditions specified in the EntityCondition object with no specified order.
|
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy)
Finds GenericValues by the conditions specified in the EntityCondition object.
|
org.ofbiz.core.entity.GenericValue |
WrappingOfBizDelegator.findById(String entityName,
Long id) |
org.ofbiz.core.entity.GenericValue |
DefaultOfBizDelegator.findById(String entityName,
Long id) |
org.ofbiz.core.entity.GenericValue |
OfBizDelegator.findById(String entityName,
Long id)
Find a Generic Entity by its numeric ID.
|
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByLike(String entityName,
Map<String,?> map) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findByLike(String s,
Map<String,?> map) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByLike(String entityName,
Map<String,?> map) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByLike(String entityName,
Map<String,?> map,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findByLike(String s,
Map<String,?> map,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByLike(String entityName,
Map<String,?> map,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.findByOr(String entityName,
List<? extends org.ofbiz.core.entity.EntityCondition> expressions,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.findByOr(String entityName,
List<? extends org.ofbiz.core.entity.EntityCondition> expressions,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.findByOr(String entityName,
List expressions,
List orderBy) |
org.ofbiz.core.entity.GenericValue |
WrappingOfBizDelegator.findByPrimaryKey(String entityName,
Long id) |
org.ofbiz.core.entity.GenericValue |
OfBizDelegator.findByPrimaryKey(String entityName,
Long id)
Find a Generic Entity by its single numeric Primary Key.
|
org.ofbiz.core.entity.GenericValue |
WrappingOfBizDelegator.findByPrimaryKey(String entityName,
Map<String,?> fields) |
org.ofbiz.core.entity.GenericValue |
OfBizDelegator.findByPrimaryKey(String entityName,
Map<String,?> fields)
Find a Generic Entity by its Primary Key.
|
OfBizListIterator |
WrappingOfBizDelegator.findListIteratorByCondition(String entityType,
org.ofbiz.core.entity.EntityCondition condition) |
OfBizListIterator |
OfBizDelegator.findListIteratorByCondition(String entityType,
org.ofbiz.core.entity.EntityCondition condition)
Returns a new OfBizListIterator.
|
OfBizListIterator |
WrappingOfBizDelegator.findListIteratorByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition whereEntityCondition,
org.ofbiz.core.entity.EntityCondition havingEntityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy,
org.ofbiz.core.entity.EntityFindOptions entityFindOptions) |
OfBizListIterator |
OfBizDelegator.findListIteratorByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition whereEntityCondition,
org.ofbiz.core.entity.EntityCondition havingEntityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy,
org.ofbiz.core.entity.EntityFindOptions entityFindOptions)
Returns a new OfBizListIterator.
|
Connection |
DefaultOfBizConnectionFactory.getConnection() |
long |
WrappingOfBizDelegator.getCount(String entityName) |
long |
OfBizDelegator.getCount(String entityName)
Runs a
COUNT * query over the given entity. |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv) |
List<org.ofbiz.core.entity.GenericValue> |
WrappingOfBizDelegator.getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
DefaultOfBizDelegator.getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
OfBizDelegator.getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv,
List<String> orderBy) |
void |
WrappingOfBizDelegator.removeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
void |
DefaultOfBizDelegator.removeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
void |
OfBizDelegator.removeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
int |
DefaultOfBizDelegator.removeByAnd(String entityName,
Map map) |
int |
WrappingOfBizDelegator.removeByAnd(String s,
Map<String,?> map) |
int |
OfBizDelegator.removeByAnd(String s,
Map<String,?> map) |
int |
WrappingOfBizDelegator.removeByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition condition) |
int |
DefaultOfBizDelegator.removeByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition condition) |
int |
OfBizDelegator.removeByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition condition) |
int |
WrappingOfBizDelegator.removeByOr(String entityName,
String entityId,
List<Long> ids) |
int |
DefaultOfBizDelegator.removeByOr(String entityName,
String entityId,
List<Long> ids) |
int |
OfBizDelegator.removeByOr(String entityName,
String entityId,
List<Long> ids)
This can be used to remove rows for a given entity based on entityName
and where entityId
|
int |
WrappingOfBizDelegator.removeValue(org.ofbiz.core.entity.GenericValue value) |
int |
DefaultOfBizDelegator.removeValue(org.ofbiz.core.entity.GenericValue value) |
int |
OfBizDelegator.removeValue(org.ofbiz.core.entity.GenericValue value) |
void |
WrappingOfBizDelegator.store(org.ofbiz.core.entity.GenericValue gv) |
void |
DefaultOfBizDelegator.store(org.ofbiz.core.entity.GenericValue gv) |
void |
OfBizDelegator.store(org.ofbiz.core.entity.GenericValue gv) |
void |
DefaultOfBizDelegator.storeAll(List genericValues) |
void |
WrappingOfBizDelegator.storeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
void |
OfBizDelegator.storeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultPermissionSchemeManager.deleteEntity(Long id)
Deletes a permission from the database
|
Modifier and Type | Method and Description |
---|---|
Collection<ProjectCategory> |
ProjectManager.getAllProjectCategories()
Returns all ProjectCategories, ordered by name.
|
long |
ProjectManager.getNextId(Project project)
Get the next issue ID from this project (transactional).
|
ProjectCategory |
ProjectManager.getProjectCategory(Long id)
Returns a single project category by id.
|
ProjectCategory |
DefaultProjectManager.getProjectCategoryForProject(Project project) |
ProjectCategory |
ProjectManager.getProjectCategoryForProject(Project project)
Returns a project's category.
|
ProjectCategory |
ProjectManager.getProjectCategoryObject(Long id)
Returns a single project category by id.
|
ProjectCategory |
AbstractProjectManager.getProjectCategoryObjectByName(String projectCategoryName) |
ProjectCategory |
AbstractProjectManager.getProjectCategoryObjectByNameIgnoreCase(String projectCategoryName) |
long |
CachingProjectManager.getProjectCount() |
long |
DefaultProjectManager.getProjectCount() |
long |
ProjectManager.getProjectCount()
Return the total number of
Project s. |
Project |
ProjectManager.getProjectObj(Long id)
Retrieves a single
Project by its id. |
List<Project> |
ProjectManager.getProjectObjects()
Return all open
Project s ordered by name. |
Collection<Project> |
ProjectManager.getProjectObjectsFromProjectCategory(Long projectCategoryId)
Returns a list of projects in a particular category.
|
Collection<Project> |
CachingProjectManager.getProjectObjectsWithNoCategory() |
Collection<Project> |
DefaultProjectManager.getProjectObjectsWithNoCategory() |
Collection<Project> |
ProjectManager.getProjectObjectsWithNoCategory()
Returns a list of projects without project category, sorted by project name
|
Collection<Project> |
CachingProjectManager.getProjectsFromProjectCategory(ProjectCategory projectCategory) |
Collection<Project> |
DefaultProjectManager.getProjectsFromProjectCategory(ProjectCategory projectCategory) |
Collection<Project> |
ProjectManager.getProjectsFromProjectCategory(ProjectCategory projectCategory)
Returns a list of projects in a particular category.
|
void |
CachingProjectManager.setProjectCategory(Project project,
ProjectCategory category) |
void |
ProjectManager.setProjectCategory(Project project,
ProjectCategory category)
Sets a project's category.
|
void |
CachingProjectManager.updateProjectCategory(ProjectCategory projectCategory) |
void |
DefaultProjectManager.updateProjectCategory(ProjectCategory projectCategory) |
void |
ProjectManager.updateProjectCategory(ProjectCategory projectCategory)
Persist an updated project category.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractSchemeManager.addDefaultSchemeToProject(Project project) |
void |
AbstractSchemeManager.addSchemeToProject(Project project,
Scheme scheme) |
Scheme |
AbstractSchemeManager.createSchemeAndEntities(Scheme scheme) |
Scheme |
SchemeManager.createSchemeAndEntities(Scheme scheme) |
void |
AbstractSchemeManager.deleteEntities(Iterable<Long> ids) |
void |
AbstractSchemeManager.deleteEntity(Long id) |
List<Scheme> |
AbstractSchemeManager.getAssociatedSchemes(boolean withEntitiesComparable) |
List<Project> |
AbstractSchemeManager.getProjects(Scheme scheme) |
Scheme |
DefaultSchemeFactory.getScheme(org.ofbiz.core.entity.GenericValue schemeGV) |
org.ofbiz.core.entity.GenericValue |
AbstractSchemeManager.getScheme(String name) |
Scheme |
AbstractSchemeAwareAction.getSchemeObject() |
Scheme |
AbstractSchemeManager.getSchemeObject(Long id) |
Scheme |
SchemeManager.getSchemeObject(Long id)
Gets a scheme by id from the database.
|
Scheme |
AbstractSchemeManager.getSchemeObject(String name) |
Scheme |
SchemeManager.getSchemeObject(String name)
Gets a scheme by name from the database.
|
List<Scheme> |
AbstractSchemeManager.getSchemeObjects() |
List<Scheme> |
SchemeManager.getSchemeObjects()
Gets all scheme objects in the database.
|
List<org.ofbiz.core.entity.GenericValue> |
AbstractSchemeManager.getSchemes() |
List<Scheme> |
DefaultSchemeFactory.getSchemes(List<org.ofbiz.core.entity.GenericValue> schemeGVs) |
List<Scheme> |
AbstractSchemeManager.getUnassociatedSchemes() |
List<Scheme> |
SchemeManager.getUnassociatedSchemes()
Will return all @link Scheme objects that are not currently associated with any projects.
|
void |
AbstractSchemeManager.removeSchemesFromProject(Project project) |
void |
AbstractSchemeManager.updateScheme(Scheme scheme) |
Modifier and Type | Method and Description |
---|---|
static boolean |
UpgradeUtils.tableExists(String tableName)
This method is used to verify if a named table exists or not within the database.
|
Modifier and Type | Method and Description |
---|---|
static File |
AttachmentUtils.getAttachmentFile(Attachment attachment)
Deprecated.
Returns the physical File for the given Attachment.
|
static File |
AttachmentUtils.getAttachmentFile(Issue issue,
Attachment attachment)
Deprecated.
Returns the physical File for the given Attachment.
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
AbstractViewFileServlet.setResponseContentHeaders(javax.servlet.http.HttpServletRequest request,
Optional<RangeResponse> rangeResponse,
javax.servlet.http.HttpServletResponse response)
Sets the content type, content length and "Content-Disposition" header
of the response based on the values of the attachment found.
|
Modifier and Type | Method and Description |
---|---|
void |
EagerWorkflowSchemeManager.addDefaultSchemeToProject(Project project) |
void |
EagerWorkflowSchemeManager.addSchemeToProject(Project project,
Scheme scheme) |
JiraWorkflow |
DraftWorkflowStore.createDraftWorkflow(ApplicationUser author,
JiraWorkflow parentWorkflow)
Creates a temporary workflow linked back to the named active workflow by id.
|
JiraWorkflow |
CachingDraftWorkflowStore.createDraftWorkflow(ApplicationUser author,
JiraWorkflow parentWorkflow) |
JiraWorkflow |
OfBizDraftWorkflowStore.createDraftWorkflow(ApplicationUser author,
JiraWorkflow parentWorkflow) |
Scheme |
EagerWorkflowSchemeManager.createSchemeAndEntities(Scheme scheme) |
boolean |
DraftWorkflowStore.deleteDraftWorkflow(String parentWorkflowName)
Removes a temporary workflow linked to the workflow name.
|
boolean |
CachingDraftWorkflowStore.deleteDraftWorkflow(String parentWorkflowName) |
boolean |
OfBizDraftWorkflowStore.deleteDraftWorkflow(String parentWorkflowName) |
void |
DefaultWorkflowSchemeManager.deleteEntity(Long id) |
void |
EagerWorkflowSchemeManager.deleteEntity(Long id) |
JiraWorkflow |
DraftWorkflowStore.getDraftWorkflow(String parentWorkflowName)
This will retrieve an draft workflow that is related to the named saved workflow.
|
JiraWorkflow |
CachingDraftWorkflowStore.getDraftWorkflow(String parentWorkflowName) |
JiraWorkflow |
OfBizDraftWorkflowStore.getDraftWorkflow(String parentWorkflowName) |
void |
EagerWorkflowSchemeManager.removeSchemesFromProject(Project project) |
boolean |
CachingWorkflowDescriptorStore.saveWorkflow(String name,
com.opensymphony.workflow.loader.WorkflowDescriptor workflowDescriptor,
boolean replace) |
boolean |
OfBizWorkflowDescriptorStore.saveWorkflow(String name,
com.opensymphony.workflow.loader.WorkflowDescriptor workflowDescriptor,
boolean replace) |
boolean |
WorkflowDescriptorStore.saveWorkflow(String name,
com.opensymphony.workflow.loader.WorkflowDescriptor workflowDescriptor,
boolean replace)
Saves or updates a workflowDescriptor.
|
JiraWorkflow |
DraftWorkflowStore.updateDraftWorkflow(ApplicationUser user,
String parentWorkflowName,
JiraWorkflow workflow)
Updates a temporary workflow with the one provided for the parent workflow name passed in.
|
JiraWorkflow |
CachingDraftWorkflowStore.updateDraftWorkflow(ApplicationUser user,
String parentWorkflowName,
JiraWorkflow workflow) |
JiraWorkflow |
OfBizDraftWorkflowStore.updateDraftWorkflow(ApplicationUser user,
String parentWorkflowName,
JiraWorkflow workflow) |
JiraWorkflow |
DraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName,
JiraWorkflow workflow)
Updates a temporary workflow with the one provided for the parent workflow name passed in.
|
JiraWorkflow |
CachingDraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName,
JiraWorkflow workflow) |
JiraWorkflow |
OfBizDraftWorkflowStore.updateDraftWorkflowWithoutAudit(String parentWorkflowName,
JiraWorkflow workflow) |
void |
DefaultWorkflowSchemeManager.updateScheme(Scheme scheme) |
void |
EagerWorkflowSchemeManager.updateScheme(Scheme scheme) |
Modifier and Type | Method and Description |
---|---|
protected Issue |
AbstractJiraCondition.getIssue(Map transientVars)
This method retrieves the original (unmodified) issue object that will be examined for the condition check.
|
Modifier and Type | Method and Description |
---|---|
protected MutableIssue |
AbstractJiraFunctionProvider.getIssue(Map transientVars)
This method retrieves the (potentially modified) issue object that is being transitioned through workflow.
|
Copyright © 2002-2022 Atlassian. All Rights Reserved.