mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
JavaDoc update
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6797 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -47,44 +47,35 @@ public interface RepoAdminService
|
|||||||
//
|
//
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get list of deployed custom models
|
* Get list of deployed custom model.
|
||||||
*
|
|
||||||
* - those that are runtime/repo managed only
|
|
||||||
*/
|
*/
|
||||||
@Auditable
|
@Auditable
|
||||||
public List<RepoModelDefinition> getModels();
|
public List<RepoModelDefinition> getModels();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deploy custom model
|
* Deploy custom model (to the 'Models' space).
|
||||||
*
|
* Allows creation of new models and incremental update of existing models.
|
||||||
* - allows creation of new models
|
|
||||||
* - allows update of existing models (*)
|
|
||||||
*
|
|
||||||
* (*) TODO - currently no validation (or locking) so can break existing usages
|
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"modelStream, modelFileName"})
|
@Auditable(parameters = {"modelStream, modelFileName"})
|
||||||
public void deployModel(InputStream modelStream, String modelFileName);
|
public void deployModel(InputStream modelStream, String modelFileName);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Undeploy custom model
|
* Undeploy custom model (from the 'Models' space).
|
||||||
*
|
* Allows delete of existing models, if not used.
|
||||||
* - allows delete of existing models (*)
|
* Permanently removes the model definition from the repository (all versions).
|
||||||
* - permanently removes definition from repository (all versions)
|
|
||||||
*
|
|
||||||
* (*) TODO - currently no validation (or locking) so can break existing usages
|
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"modelFileName"})
|
@Auditable(parameters = {"modelFileName"})
|
||||||
public QName undeployModel(String modelFileName);
|
public QName undeployModel(String modelFileName);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Activate custom model
|
* Activate custom model.
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"modelFileName"})
|
@Auditable(parameters = {"modelFileName"})
|
||||||
public QName activateModel(String modelFileName);
|
public QName activateModel(String modelFileName);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deactivate custom model
|
* Deactivate custom model.
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"modelFileName"})
|
@Auditable(parameters = {"modelFileName"})
|
||||||
public QName deactivateModel(String modelFileName);
|
public QName deactivateModel(String modelFileName);
|
||||||
@@ -94,28 +85,26 @@ public interface RepoAdminService
|
|||||||
//
|
//
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get deployed custom messages resource bundles
|
* Get deployed custom messages resource bundles.
|
||||||
*
|
|
||||||
* - those that are runtime/repo managed only
|
|
||||||
*/
|
*/
|
||||||
@Auditable
|
@Auditable
|
||||||
public List<String> getMessageBundles();
|
public List<String> getMessageBundles();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deploy custom message resource bundle
|
* Deploy custom message resource bundle (to the 'Messages' space).
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"resourceClasspath"})
|
@Auditable(parameters = {"resourceClasspath"})
|
||||||
public String deployMessageBundle(String resourceClasspath);
|
public String deployMessageBundle(String resourceClasspath);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Undeploy custom message resource bundle
|
* Undeploy custom message resource bundle (from the 'Messages' space).
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"bundleBaseName"})
|
@Auditable(parameters = {"bundleBaseName"})
|
||||||
public void undeployMessageBundle(String bundleBaseName);
|
public void undeployMessageBundle(String bundleBaseName);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reload custom message resource bundle
|
* Reload custom message resource bundle.
|
||||||
*/
|
*/
|
||||||
@Auditable(parameters = {"bundleBaseName"})
|
@Auditable(parameters = {"bundleBaseName"})
|
||||||
public void reloadMessageBundle(String bundleBaseName);
|
public void reloadMessageBundle(String bundleBaseName);
|
||||||
|
Reference in New Issue
Block a user