All URIs are relative to https://localhost/alfresco/api/-default-/public/gs/versions/1
Method | HTTP request | Description |
---|---|---|
createDeclassificationExemption | POST /declassification-exemptions | Create a declassification exemption |
deleteDeclassificationExemption | DELETE /declassification-exemptions/{declassificationExemptionId} | Delete a declassification exemption |
listDeclassificationExemptions | GET /declassification-exemptions | List all declassification exemptions |
showDeclassificationExemptionById | GET /declassification-exemptions/{declassificationExemptionId} | Get declassification exemption information |
updateDeclassificationExemption | PUT /declassification-exemptions/{declassificationExemptionId} | Update a declassification exemption |
DeclassificationExemptionEntry createDeclassificationExemption(declassificationExemption)
Create a declassification exemption
Creates a new declassification exemption.
Note: You can create more than one exemption by specifying a list of exemptions in the JSON body. For example, the following JSON body creates two declassification exemptions: JSON [ { "code":"My Code1", "description":"My Description1" }, { "code":"My Code2", "description":"My Description2" } ]
If you specify a list as input, then a paginated list rather than an entry is returned in the response body. For example:
JSON { "list": { "pagination": { "count": 2, "hasMoreItems": false, "totalItems": 2, "skipCount": 0, "maxItems": 100 }, "entries": [ { "entry": { ... } }, { "entry": { ... } } ] } }
import DeclassificationExemptionsApi from 'DeclassificationExemptionsApi';
import { AlfrescoApi } from '@alfresco/js-api';
this.alfrescoApi = new AlfrescoApi();
this.alfrescoApi.setConfig({
hostEcm: 'http://127.0.0.1:8080'
});
let declassificationexemptionsApi = new DeclassificationExemptionsApi(this.alfrescoApi);
declassificationexemptionsApi.createDeclassificationExemption(declassificationExemption).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
declassificationExemption | DeclassificationExemptionBody | Declassification exemption |
DeclassificationExemptionEntry
deleteDeclassificationExemption(declassificationExemptionId)
Delete a declassification exemption
Deletes the declassification exemption with id declassificationExemptionId. You can't delete a classification exemption that is being used to classify content.
import DeclassificationExemptionsApi from 'DeclassificationExemptionsApi';
import { AlfrescoApi } from '@alfresco/js-api';
this.alfrescoApi = new AlfrescoApi();
this.alfrescoApi.setConfig({
hostEcm: 'http://127.0.0.1:8080'
});
let declassificationexemptionsApi = new DeclassificationExemptionsApi(this.alfrescoApi);
declassificationexemptionsApi.deleteDeclassificationExemption(declassificationExemptionId).then(() => {
console.log('API called successfully.');
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
declassificationExemptionId | string | The identifier for the declassification exemption |
null (empty response body)
DeclassificationExemptionsPaging listDeclassificationExemptions(opts)
List all declassification exemptions
Gets all declassification exemptions.
import DeclassificationExemptionsApi from 'DeclassificationExemptionsApi';
import { AlfrescoApi } from '@alfresco/js-api';
this.alfrescoApi = new AlfrescoApi();
this.alfrescoApi.setConfig({
hostEcm: 'http://127.0.0.1:8080'
});
let declassificationexemptionsApi = new DeclassificationExemptionsApi(this.alfrescoApi);
let opts = {
'skipCount': 56 // | The number of entities that exist in the collection before those included in this list.
'maxItems': 56 // | The maximum number of items to return in the list.
};
declassificationexemptionsApi.listDeclassificationExemptions(opts).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
skipCount | number | The number of entities that exist in the collection before those included in this list. | [optional] |
maxItems | number | The maximum number of items to return in the list. | [optional] |
DeclassificationExemptionsPaging
DeclassificationExemptionEntry showDeclassificationExemptionById(declassificationExemptionId)
Get declassification exemption information
Gets the declassification exemption with id declassificationExemptionId.
import DeclassificationExemptionsApi from 'DeclassificationExemptionsApi';
import { AlfrescoApi } from '@alfresco/js-api';
this.alfrescoApi = new AlfrescoApi();
this.alfrescoApi.setConfig({
hostEcm: 'http://127.0.0.1:8080'
});
let declassificationexemptionsApi = new DeclassificationExemptionsApi(this.alfrescoApi);
declassificationexemptionsApi.showDeclassificationExemptionById(declassificationExemptionId).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
declassificationExemptionId | string | The identifier for the declassification exemption |
DeclassificationExemptionEntry
DeclassificationExemptionEntry updateDeclassificationExemption(declassificationExemptionIddeclassificationExemption)
Update a declassification exemption
Updates the declassification exemption with id declassificationExemptionId. For example, you can rename a declassification exemption.
import DeclassificationExemptionsApi from 'DeclassificationExemptionsApi';
import { AlfrescoApi } from '@alfresco/js-api';
this.alfrescoApi = new AlfrescoApi();
this.alfrescoApi.setConfig({
hostEcm: 'http://127.0.0.1:8080'
});
let declassificationexemptionsApi = new DeclassificationExemptionsApi(this.alfrescoApi);
declassificationexemptionsApi.updateDeclassificationExemption(declassificationExemptionIddeclassificationExemption).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
declassificationExemptionId | string | The identifier for the declassification exemption | |
declassificationExemption | DeclassificationExemptionBody | Declassification exemption |