Name

global.sc_ic_TaskDefnStagingSecurityManager

Description

Security manager for the sc_ic_task_defn_staging table

Script

var sc_ic_TaskDefnStagingSecurityManager = Class.create();

sc_ic_TaskDefnStagingSecurityManager.prototype = Object.extendsObject(sc_ic_SecurityManager, {
  
  /** Returns false. Subclasses should define when creation should be allowed */
  canCreate: function() {
  	return gs.hasRole(sc_.CATALOG_ADMIN) || gs.hasRole(sc_ic.CATALOG_MANAGER) || gs.hasRole(sc_ic.CATALOG_EDITOR);
  },
  
  /** Returns false. Subclasses should define when reading should be allowed */
  canRead: function() {
  	if (gs.hasRole(sc_.CATALOG_ADMIN))
  		return true;
  	
  	return sc_ic_Factory.getSecurityManager(this._gr[sc_ic.ITEM_STAGING].getRefRecord()).canRead();
  },
  
  /** Returns false. Subclasses should define when updating should be allowed */
  canUpdate: function() {
  	return sc_ic_Factory.getSecurityManager(this._gr[sc_ic.ITEM_STAGING].getRefRecord()).canUpdate();
  },
  
  /** Returns false. Subclasses should define when deleting should be allowed */
  canDelete: function() {
  	return sc_ic_Factory.getSecurityManager(this._gr[sc_ic.ITEM_STAGING].getRefRecord()).canUpdate();
  },
  
  type: "sc_ic_TaskDefnStagingSecurityManager"
});

Sys ID

21ff41fceb1311003623666cd206fede

Offical Documentation

Official Docs: