public class OFBizPropertyUtils extends Object
Constructor and Description |
---|
OFBizPropertyUtils() |
Modifier and Type | Method and Description |
---|---|
static com.opensymphony.module.propertyset.PropertySet |
getCachingPropertySet(org.ofbiz.core.entity.GenericValue gv)
Gets a caching property set that is associated with the specified generic value.
|
static com.opensymphony.module.propertyset.PropertySet |
getCachingPropertySet(String entityName,
Long entityId)
Gets a caching property set that is associated with the specified entity.
|
static com.opensymphony.module.propertyset.PropertySet |
getPropertySet(org.ofbiz.core.entity.GenericValue gv)
Gets a non-caching property set that is associated with the specified generic value.
|
static com.opensymphony.module.propertyset.PropertySet |
getPropertySet(String entityName,
Long entityId)
Gets a non-caching property set that is associated with the specified entity.
|
static void |
removePropertySet(org.ofbiz.core.entity.GenericValue gv)
Implementation note: This method assumes that the property set has been accessed in
a cached manner and flushes any associated entries.
|
static void |
removePropertySet(String entityName,
Long entityId)
Implementation note: This method assumes that the property set has been accessed in
a cached manner and flushes any associated entries.
|
public static com.opensymphony.module.propertyset.PropertySet getPropertySet(String entityName, Long entityId)
getCachingPropertySet(String, Long)
method should almost always be preferred over
this one because that implementation will be more efficient for most cases. It is also safer
to use the caching property set, because it will notify any other caching property sets if their information
has become stale. The non-caching property set returned by this method does not do this, so any caching
property sets created by other code will not be notified of changes.entityName
- the entity model name of the property set's owning entityentityId
- the entity ID of the property set's owning entitypublic static com.opensymphony.module.propertyset.PropertySet getPropertySet(org.ofbiz.core.entity.GenericValue gv)
getCachingPropertySet(GenericValue)
method should almost always be preferred over
this one because that implementation will be more efficient for most cases. It is also safer
to use the caching property set, because it will notify any other caching property sets if their information
has become stale. The non-caching property set returned by this method does not do this, so any caching
property sets created by other code will not be notified of changes.gv
- the generic value which owns the property setpublic static com.opensymphony.module.propertyset.PropertySet getCachingPropertySet(String entityName, Long entityId)
getPropertySet(String, Long)
,
because this implementation will be more efficient for most cases. It is also safer
to use the caching property set, because it will notify any other caching property sets if their information
has become stale. The non-caching property set returned by the other method does not do this, so any caching
property sets created by other code will not be notified of changes.entityName
- the entity model name of the property set's owning entityentityId
- the entity ID of the property set's owning entitypublic static com.opensymphony.module.propertyset.PropertySet getCachingPropertySet(org.ofbiz.core.entity.GenericValue gv)
getPropertySet(GenericValue)
,
because this implementation will be more efficient for most cases. It is also safer
to use the caching property set, because it will notify any other caching property sets if their information
has become stale. The non-caching property set returned by the other method does not do this, so any caching
property sets created by other code will not be notified of changes.gv
- the generic value which owns the property setpublic static void removePropertySet(String entityName, Long entityId)
remove
directly on the non-cached implementation:
getPropertySet(entityName,entityId)
.remove()
entityName
- the entity model name of the property set's owning entityentityId
- the entity ID of the property set's owning entitypublic static void removePropertySet(org.ofbiz.core.entity.GenericValue gv)
remove
directly on the non-cached implementation:
getPropertySet(gv)
.remove()
gv
- the generic value which owns the property setCopyright © 2002-2016 Atlassian. All Rights Reserved.