public interface SchemeFactory
Modifier and Type | Method and Description |
---|---|
Scheme |
getScheme(org.ofbiz.core.entity.GenericValue schemeGV)
Will take a
GenericValue that represents a Scheme
and return the actual Scheme object and it's associated entities. |
Scheme |
getScheme(org.ofbiz.core.entity.GenericValue schemeGV,
Collection<org.ofbiz.core.entity.GenericValue> schemeEntityGVs)
This will take a
GenericValue that represents a Scheme
and a Collection of GenericValue's representing a SchemeEntity
and return the actual Scheme object and it's associated entities as objects. |
List<Scheme> |
getSchemes(List<org.ofbiz.core.entity.GenericValue> schemeGVs) |
List<Scheme> |
getSchemesWithEntitiesComparable(List<org.ofbiz.core.entity.GenericValue> schemeGVs) |
Scheme |
getSchemeWithEntitiesComparable(org.ofbiz.core.entity.GenericValue schemeGV)
Will take a
GenericValue that represents a Scheme
and return the actual Scheme object and it's associated entities, NOTE: the
entities returned from this method will not have the id field populated
this allows you to test the equality of entities ignoring the fact that
they are actually representing different records in the persistent store. |
Scheme getScheme(org.ofbiz.core.entity.GenericValue schemeGV)
GenericValue
that represents a Scheme
and return the actual Scheme object and it's associated entities.schemeGV
- Scheme getSchemeWithEntitiesComparable(org.ofbiz.core.entity.GenericValue schemeGV)
GenericValue
that represents a Scheme
and return the actual Scheme object and it's associated entities, NOTE: the
entities returned from this method will not have the id field populated
this allows you to test the equality of entities ignoring the fact that
they are actually representing different records in the persistent store.schemeGV
- List<Scheme> getSchemesWithEntitiesComparable(List<org.ofbiz.core.entity.GenericValue> schemeGVs)
Scheme getScheme(org.ofbiz.core.entity.GenericValue schemeGV, Collection<org.ofbiz.core.entity.GenericValue> schemeEntityGVs)
GenericValue
that represents a Scheme
and a Collection
of GenericValue's representing a SchemeEntity
and return the actual Scheme object and it's associated entities as objects.schemeGV
- Copyright © 2002-2019 Atlassian. All Rights Reserved.