All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib.xp.examples.schema.deletePart.js Maven / Gradle / Ivy

var schemaLib = require('/lib/xp/schema');
var assert = require('/lib/xp/testing');

/* global log*/

// BEGIN
// Create virtual part.

var params = {
    key: 'myapp:mypart',
    type: 'PART'
};

var result = schemaLib.deleteComponent(params);


if (result) {
    log.info('Deleted part: ' + params.key);
} else {
    log.info('Part deletion failed: ' + params.key);
}

// END


assert.assertTrue(result);





© 2015 - 2024 Weber Informatics LLC | Privacy Policy