public class OfBizPluginVersionStore extends Object implements PluginVersionStore
PluginVersionStore
.Modifier and Type | Field and Description |
---|---|
static String |
PLUGIN_VERSION_CREATED |
static String |
PLUGIN_VERSION_ENTITY_NAME |
static String |
PLUGIN_VERSION_ID |
static String |
PLUGIN_VERSION_KEY |
static String |
PLUGIN_VERSION_NAME |
static String |
PLUGIN_VERSION_VERSION |
Constructor and Description |
---|
OfBizPluginVersionStore(OfBizDelegator ofBizDelegator) |
Modifier and Type | Method and Description |
---|---|
PluginVersion |
create(PluginVersion pluginVersion)
Creates a
PluginVersion in the database. |
boolean |
delete(Long pluginVersionId)
Deletes a plugin version from the datastore.
|
void |
deleteByKey(String pluginKey)
Deletes any
PluginVersion s for the plugin with the given key. |
List<PluginVersion> |
getAll()
Returns a list of all
PluginVersion 's. |
PluginVersion |
getById(Long pluginVersionId)
Gets the
PluginVersion specified by the id. |
long |
save(PluginVersion pluginVersion)
Persists the given
PluginVersion , performing an insert or update according to whether a record for this
plugin key already exists. |
PluginVersion |
update(PluginVersion pluginVersion)
Updates a plugin version in the datastore.
|
public static final String PLUGIN_VERSION_ENTITY_NAME
public static final String PLUGIN_VERSION_ID
public static final String PLUGIN_VERSION_KEY
public static final String PLUGIN_VERSION_NAME
public static final String PLUGIN_VERSION_VERSION
public static final String PLUGIN_VERSION_CREATED
public OfBizPluginVersionStore(OfBizDelegator ofBizDelegator)
public PluginVersion create(PluginVersion pluginVersion)
PluginVersionStore
PluginVersion
in the database. The id in the object will
be ignored.create
in interface PluginVersionStore
pluginVersion
- contains the key, name, and version to be persisted.PluginVersion
with the database id populated.public PluginVersion update(PluginVersion pluginVersion)
PluginVersionStore
update
in interface PluginVersionStore
pluginVersion
- contains the key, name, and version to update. The id will be used to find the record to
update.PluginVersion
that represents the updated record.public boolean delete(Long pluginVersionId)
PluginVersionStore
delete
in interface PluginVersionStore
pluginVersionId
- identifies the plugin version record to delete, not null.@Nullable public PluginVersion getById(Long pluginVersionId)
PluginVersionStore
PluginVersion
specified by the id.getById
in interface PluginVersionStore
pluginVersionId
- identifies the plugin version record to retrieve.PluginVersion
with the corresponding id or null if the record
is not found.public List<PluginVersion> getAll()
PluginVersionStore
PluginVersion
's.getAll
in interface PluginVersionStore
PluginVersion
's.public void deleteByKey(String pluginKey)
PluginVersionStore
PluginVersion
s for the plugin with the given key.deleteByKey
in interface PluginVersionStore
pluginKey
- the key for which to delete the version(s) (required)public long save(PluginVersion pluginVersion)
PluginVersionStore
PluginVersion
, performing an insert or update according to whether a record for this
plugin key already exists.save
in interface PluginVersionStore
pluginVersion
- the plugin version to save (required)Copyright © 2002-2024 Atlassian. All Rights Reserved.