Package | Description |
---|---|
er.attachment.model | |
er.bugtracker | |
er.corebusinesslogic | |
er.corebusinesslogic.audittrail | |
er.extensions.eof | |
er.extensions.partials |
Partial Entities
|
er.indexing.attributes | |
er.indexing.storage | |
er.persistentsessionstorage.model | |
er.persistentsessionstorage.model.eogen | |
er.rest.routes | |
er.taggable |
ERTaggable is a fairly direct port of the acts_as_taggable Rails mixin to EOF, the framework provides a very
easy method of integrating delicious-style tagging support into arbitrary entities in your applications.
|
er.taggable.model |
Modifier and Type | Class and Description |
---|---|
class |
_ERAttachment |
class |
_ERAttachmentData |
class |
_ERCloudFilesAttachment |
class |
_ERDatabaseAttachment |
class |
_ERFileAttachment |
class |
_ERS3Attachment |
class |
ERAttachment
ERAttachment is the superclass of all attachment types.
|
class |
ERAttachmentData
For a database attachment, ERAttachmentData contains the actual backing
data for the attachment.
|
class |
ERCloudFilesAttachment
ERS3Attachment (type = "cf") represents an attachment whose content is stored on RackSpace's CloudFiles service and will be served directly from CloudFiles.
|
class |
ERDatabaseAttachment
ERDatabaseAttachment (type "db") represents an attachment whose data
is stored in the database in an ERAttachmentData class.
|
class |
ERFileAttachment
ERFileAttachment (type = "file") represents an attachment whose
data is stored on the local filesystem.
|
class |
ERS3Attachment
ERS3Attachment (type = "s3") represents an attachment whose content is stored on Amazon's S3 service and will be served directly from S3.
|
Modifier and Type | Method and Description |
---|---|
void |
ERS3Attachment.didCopyFromChildInEditingContext(ERXGenericRecord originalEO,
EOEditingContext childEditingContext) |
void |
ERCloudFilesAttachment.didCopyFromChildInEditingContext(ERXGenericRecord originalEO,
EOEditingContext childEditingContext) |
Modifier and Type | Class and Description |
---|---|
class |
_Bug |
class |
_Comment |
class |
_Component |
class |
_Difficulty |
class |
_Framework |
class |
_People |
class |
_Priority |
class |
_Release |
class |
_Requirement |
class |
_RequirementSubType |
class |
_RequirementType |
class |
_TestItem |
class |
_TestItemState |
class |
Bug |
class |
Comment |
class |
Component |
class |
Difficulty |
class |
Framework |
class |
People |
class |
Priority |
class |
Release |
class |
Requirement |
class |
RequirementSubType |
class |
RequirementType |
class |
TestItem |
class |
TestItemState |
Modifier and Type | Class and Description |
---|---|
class |
_ERCHelpText |
class |
_ERCLogEntry |
class |
_ERCMailMessage |
class |
_ERCMailMessageArchive |
class |
_ERCMessageAttachment |
class |
_ERCPreference |
class |
_ERCStatic |
class |
ERCHelpText |
class |
ERCLogEntry |
class |
ERCMailMessage |
class |
ERCMailMessageArchive |
class |
ERCMessageAttachment |
class |
ERCPreference |
class |
ERCStampedEnterpriseObject
EO subclass that has a timestamp with its creation date, the most recent modification,
and a log entry describing the change.
|
class |
ERCStatic
FIXME AK this code could be replaced by an ERXEOCache
|
Modifier and Type | Class and Description |
---|---|
class |
_ERCAuditBlob |
class |
_ERCAuditTrail |
class |
_ERCAuditTrailEntry |
class |
ERCAuditBlob |
class |
ERCAuditTrail
Bracket for all single audit trail actions.
|
class |
ERCAuditTrailEntry |
Modifier and Type | Method and Description |
---|---|
void |
ERXGenericRecord.didCopyFromChildInEditingContext(ERXGenericRecord originalEO,
EOEditingContext childEditingContext)
Called when this EO is saved from a child editing context into a parent editing context.
|
static EOQualifier |
ERXQ.is(ERXGenericRecord value)
Return an identity qualifier to use with ERXExistsQualifier for example
|
Modifier and Type | Method and Description |
---|---|
ERXExistsQualifier |
ERXKey.containsAnyOfTheseObjects(NSArray<? extends ERXGenericRecord> valueArray)
Uses ERXExistsQualifier to build a qualifier that returns true if at least one the objects
specified is found in the to many relationship represented by this key.
|
static EOQualifier |
ERXQ.isIn(NSArray<? extends ERXGenericRecord> valueArray)
Return a OR qualifier of identity qualifiers using each value from the param array
|
Modifier and Type | Class and Description |
---|---|
class |
ERXPartial<T extends ERXGenericRecord>
For overview information on partials, read the
package.html in
er.extensions.partials . |
Modifier and Type | Class and Description |
---|---|
class |
ERXPartialGenericRecord
For overview information on partials, read the
package.html in
er.extensions.partials . |
Modifier and Type | Class and Description |
---|---|
class |
_ERIAttribute |
class |
_ERIAttributeGroup |
class |
_ERIAttributeType |
class |
_ERIValidationRule |
class |
ERIAttribute |
class |
ERIAttributeGroup |
class |
ERIAttributeType |
class |
ERIValidationRule |
Modifier and Type | Class and Description |
---|---|
class |
_ERIDirectory |
class |
_ERIFile |
class |
_ERIFileContent |
class |
ERIDirectory |
class |
ERIFile |
class |
ERIFileContent |
Modifier and Type | Class and Description |
---|---|
class |
ERSessionInfo |
Modifier and Type | Class and Description |
---|---|
class |
_ERSessionInfo |
Modifier and Type | Method and Description |
---|---|
static String |
ERXRouteUrlUtils.actionUrlForRecord(WOContext context,
ERXGenericRecord record,
String action,
String format,
NSDictionary<String,Object> queryParameters,
boolean secure,
boolean includeSessionID) |
Modifier and Type | Class and Description |
---|---|
class |
ERTaggable<T extends ERXGenericRecord>
ERTaggable provides a wrapper around a taggable EO, extending it with
tagging-related methods.
|
class |
ERTaggableEntity<T extends ERXGenericRecord>
ERTaggableEntity provides entity-level tag management and fetching methods.
|
Modifier and Type | Method and Description |
---|---|
static <T extends ERXGenericRecord> |
ERTaggable.taggable(T eo)
A factory method for generating a taggable from an EO.
|
static <T extends ERXGenericRecord> |
ERTaggableEntity.taggableEntity(EOEntity entity)
Constructs an ERTaggableEntity.
|
static <T extends ERXGenericRecord> |
ERTaggableEntity.taggableEntity(String entityName)
Constructs an ERTaggableEntity.
|
static <T extends ERXGenericRecord> |
ERTaggableEntity.taggableEntity(T eo)
Shortcut for getting an ERTaggableEntity for an EO.
|
Modifier and Type | Method and Description |
---|---|
static NSDictionary<EOEntity,NSArray<? extends ERXGenericRecord>> |
ERTaggableEntity.fetchAllTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
int limit,
Object tags)
Fetches all the EOs of all taggable entities that are associated with the given tags.
|
static NSDictionary<EOEntity,NSArray<? extends ERXGenericRecord>> |
ERTaggableEntity.fetchAllTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
Object tags)
Fetches all the EOs of all taggable entities that are associated with the given tags (unlimited).
|
static NSDictionary<EOEntity,NSArray<? extends ERXGenericRecord>> |
ERTaggableEntity.fetchAllTaggedWith(EOEditingContext editingContext,
Object tags)
Fetches all the EOs of all taggable entities that are associated with all of the given tags (unlimited).
|
Modifier and Type | Class and Description |
---|---|
class |
_ERTag |
class |
ERTag
ERTag represents a single String shared tag.
|
Copyright © 2002 – 2024 Project Wonder.