// DO NOT EDIT. Make changes to Company.java instead. package er.rest.example.model; import com.webobjects.eoaccess.*; import com.webobjects.eocontrol.*; import com.webobjects.foundation.*; import java.math.*; import java.util.*; import org.apache.log4j.Logger; import er.extensions.eof.*; import er.extensions.foundation.*; @SuppressWarnings("all") public abstract class _Company extends ERXGenericRecord { public static final String ENTITY_NAME = "Company"; // Attribute Keys public static final ERXKey<String> NAME = new ERXKey<String>("name"); // Relationship Keys public static final ERXKey<er.rest.example.model.Person> EMPLOYEES = new ERXKey<er.rest.example.model.Person>("employees"); // Attributes public static final String NAME_KEY = NAME.key(); // Relationships public static final String EMPLOYEES_KEY = EMPLOYEES.key(); private static Logger LOG = Logger.getLogger(_Company.class); public Company localInstanceIn(EOEditingContext editingContext) { Company localInstance = (Company)EOUtilities.localInstanceOfObject(editingContext, this); if (localInstance == null) { throw new IllegalStateException("You attempted to localInstance " + this + ", which has not yet committed."); } return localInstance; } public String name() { return (String) storedValueForKey(_Company.NAME_KEY); } public void setName(String value) { if (_Company.LOG.isDebugEnabled()) { _Company.LOG.debug( "updating name from " + name() + " to " + value); } takeStoredValueForKey(value, _Company.NAME_KEY); } public NSArray<er.rest.example.model.Person> employees() { return (NSArray<er.rest.example.model.Person>)storedValueForKey(_Company.EMPLOYEES_KEY); } public NSArray<er.rest.example.model.Person> employees(EOQualifier qualifier) { return employees(qualifier, null, false); } public NSArray<er.rest.example.model.Person> employees(EOQualifier qualifier, boolean fetch) { return employees(qualifier, null, fetch); } public NSArray<er.rest.example.model.Person> employees(EOQualifier qualifier, NSArray<EOSortOrdering> sortOrderings, boolean fetch) { NSArray<er.rest.example.model.Person> results; if (fetch) { EOQualifier fullQualifier; EOQualifier inverseQualifier = new EOKeyValueQualifier(er.rest.example.model.Person.COMPANY_KEY, EOQualifier.QualifierOperatorEqual, this); if (qualifier == null) { fullQualifier = inverseQualifier; } else { NSMutableArray<EOQualifier> qualifiers = new NSMutableArray<EOQualifier>(); qualifiers.addObject(qualifier); qualifiers.addObject(inverseQualifier); fullQualifier = new EOAndQualifier(qualifiers); } results = er.rest.example.model.Person.fetchPersons(editingContext(), fullQualifier, sortOrderings); } else { results = employees(); if (qualifier != null) { results = (NSArray<er.rest.example.model.Person>)EOQualifier.filteredArrayWithQualifier(results, qualifier); } if (sortOrderings != null) { results = (NSArray<er.rest.example.model.Person>)EOSortOrdering.sortedArrayUsingKeyOrderArray(results, sortOrderings); } } return results; } public void addToEmployees(er.rest.example.model.Person object) { includeObjectIntoPropertyWithKey(object, _Company.EMPLOYEES_KEY); } public void removeFromEmployees(er.rest.example.model.Person object) { excludeObjectFromPropertyWithKey(object, _Company.EMPLOYEES_KEY); } public void addToEmployeesRelationship(er.rest.example.model.Person object) { if (_Company.LOG.isDebugEnabled()) { _Company.LOG.debug("adding " + object + " to employees relationship"); } if (er.extensions.eof.ERXGenericRecord.InverseRelationshipUpdater.updateInverseRelationships()) { addToEmployees(object); } else { addObjectToBothSidesOfRelationshipWithKey(object, _Company.EMPLOYEES_KEY); } } public void removeFromEmployeesRelationship(er.rest.example.model.Person object) { if (_Company.LOG.isDebugEnabled()) { _Company.LOG.debug("removing " + object + " from employees relationship"); } if (er.extensions.eof.ERXGenericRecord.InverseRelationshipUpdater.updateInverseRelationships()) { removeFromEmployees(object); } else { removeObjectFromBothSidesOfRelationshipWithKey(object, _Company.EMPLOYEES_KEY); } } public er.rest.example.model.Person createEmployeesRelationship() { EOClassDescription eoClassDesc = EOClassDescription.classDescriptionForEntityName( er.rest.example.model.Person.ENTITY_NAME ); EOEnterpriseObject eo = eoClassDesc.createInstanceWithEditingContext(editingContext(), null); editingContext().insertObject(eo); addObjectToBothSidesOfRelationshipWithKey(eo, _Company.EMPLOYEES_KEY); return (er.rest.example.model.Person) eo; } public void deleteEmployeesRelationship(er.rest.example.model.Person object) { removeObjectFromBothSidesOfRelationshipWithKey(object, _Company.EMPLOYEES_KEY); editingContext().deleteObject(object); } public void deleteAllEmployeesRelationships() { Enumeration<er.rest.example.model.Person> objects = employees().immutableClone().objectEnumerator(); while (objects.hasMoreElements()) { deleteEmployeesRelationship(objects.nextElement()); } } public static Company createCompany(EOEditingContext editingContext, String name ) { Company eo = (Company) EOUtilities.createAndInsertInstance(editingContext, _Company.ENTITY_NAME); eo.setName(name); return eo; } public static ERXFetchSpecification<Company> fetchSpec() { return new ERXFetchSpecification<Company>(_Company.ENTITY_NAME, null, null, false, true, null); } public static NSArray<Company> fetchAllCompanies(EOEditingContext editingContext) { return _Company.fetchAllCompanies(editingContext, null); } public static NSArray<Company> fetchAllCompanies(EOEditingContext editingContext, NSArray<EOSortOrdering> sortOrderings) { return _Company.fetchCompanies(editingContext, null, sortOrderings); } public static NSArray<Company> fetchCompanies(EOEditingContext editingContext, EOQualifier qualifier, NSArray<EOSortOrdering> sortOrderings) { ERXFetchSpecification<Company> fetchSpec = new ERXFetchSpecification<Company>(_Company.ENTITY_NAME, qualifier, sortOrderings); fetchSpec.setIsDeep(true); NSArray<Company> eoObjects = fetchSpec.fetchObjects(editingContext); return eoObjects; } public static Company fetchCompany(EOEditingContext editingContext, String keyName, Object value) { return _Company.fetchCompany(editingContext, new EOKeyValueQualifier(keyName, EOQualifier.QualifierOperatorEqual, value)); } public static Company fetchCompany(EOEditingContext editingContext, EOQualifier qualifier) { NSArray<Company> eoObjects = _Company.fetchCompanies(editingContext, qualifier, null); Company eoObject; int count = eoObjects.count(); if (count == 0) { eoObject = null; } else if (count == 1) { eoObject = eoObjects.objectAtIndex(0); } else { throw new IllegalStateException("There was more than one Company that matched the qualifier '" + qualifier + "'."); } return eoObject; } public static Company fetchRequiredCompany(EOEditingContext editingContext, String keyName, Object value) { return _Company.fetchRequiredCompany(editingContext, new EOKeyValueQualifier(keyName, EOQualifier.QualifierOperatorEqual, value)); } public static Company fetchRequiredCompany(EOEditingContext editingContext, EOQualifier qualifier) { Company eoObject = _Company.fetchCompany(editingContext, qualifier); if (eoObject == null) { throw new NoSuchElementException("There was no Company that matched the qualifier '" + qualifier + "'."); } return eoObject; } public static Company localInstanceIn(EOEditingContext editingContext, Company eo) { Company localInstance = (eo == null) ? null : ERXEOControlUtilities.localInstanceOfObject(editingContext, eo); if (localInstance == null && eo != null) { throw new IllegalStateException("You attempted to localInstance " + eo + ", which has not yet committed."); } return localInstance; } }