Package com.uc4.api.objects
Interface Rights
- 
- All Known Implementing Classes:
 ObjectRight,UserRight
public interface RightsInterface for Rights. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanisCancel()Returns the access method: Cancel.booleanisDefineSLA()Deprecated.This feature has been removedbooleanisDelete()Returns the access method: Delete.booleanisExecute()Returns the access method: Execute.booleanisModifyAtRuntime()Access method: Modify at runtime This access method permits the setting of trace options on UC4 Automation Engines or Agents and the ending of RemoteTaskManager and Event objects.booleanisRead()Returns the access method: Read.booleanisReport()Access to Reports.booleanisStatistics()Access to Statistics.booleanisWrite()Returns the access method: Write.voidsetCancel(boolean cancel)Sets the access method: Cancel.voidsetDefineSLA(boolean defineSLA)Deprecated.This feature has been removedvoidsetDelete(boolean delete)Sets the access method: Delete.voidsetExecute(boolean execute)Sets the access method: Execute.voidsetModifyAtRuntime(boolean modifyAtRuntime)Sets the access method: Modify at runtime This access method permits the setting of trace options on UC4 Automation Engines or Agents and the ending of RemoteTaskManager and Event objects.voidsetRead(boolean read)Sets the access method: Read.voidsetReport(boolean report)Sets access to Reports.voidsetStatistics(boolean statistics)Sets access to Statistics.voidsetWrite(boolean write)Sets the access method: Write. 
 - 
 
- 
- 
Method Detail
- 
isRead
boolean isRead()
Returns the access method: Read.- Returns:
 trueif enabled,falseif disabled
 
- 
setRead
void setRead(boolean read)
Sets the access method: Read.- Parameters:
 read-trueto enable,falseto disable this action
 
- 
isWrite
boolean isWrite()
Returns the access method: Write.- Returns:
 trueif enabled,falseif disabled
 
- 
setWrite
void setWrite(boolean write)
Sets the access method: Write.- Parameters:
 write-trueto enable,falseto disable this action
 
- 
isExecute
boolean isExecute()
Returns the access method: Execute.- Returns:
 trueif enabled,falseif disabled
 
- 
setExecute
void setExecute(boolean execute)
Sets the access method: Execute.- Parameters:
 execute-trueto enable,falseto disable this action
 
- 
isDelete
boolean isDelete()
Returns the access method: Delete.- Returns:
 trueif enabled,falseif disabled
 
- 
setDelete
void setDelete(boolean delete)
Sets the access method: Delete.- Parameters:
 delete-trueto enable,falseto disable this action
 
- 
isCancel
boolean isCancel()
Returns the access method: Cancel.- Returns:
 trueif enabled,falseif disabled
 
- 
setCancel
void setCancel(boolean cancel)
Sets the access method: Cancel.- Parameters:
 cancel-trueto enable,falseto disable this action
 
- 
isStatistics
boolean isStatistics()
Access to Statistics.- Returns:
 trueif enabled,falseif disabled
 
- 
setStatistics
void setStatistics(boolean statistics)
Sets access to Statistics.- Parameters:
 statistics-trueto enable,falseto disable this action
 
- 
isReport
boolean isReport()
Access to Reports.- Returns:
 trueif enabled,falseif disabled
 
- 
setReport
void setReport(boolean report)
Sets access to Reports.- Parameters:
 report-trueto enable,falseto disable this action
 
- 
isModifyAtRuntime
boolean isModifyAtRuntime()
Access method: Modify at runtime This access method permits the setting of trace options on UC4 Automation Engines or Agents and the ending of RemoteTaskManager and Event objects.- Returns:
 trueif enabled,falseif disabled
 
- 
setModifyAtRuntime
void setModifyAtRuntime(boolean modifyAtRuntime)
Sets the access method: Modify at runtime This access method permits the setting of trace options on UC4 Automation Engines or Agents and the ending of RemoteTaskManager and Event objects.- Parameters:
 modifyAtRuntime-trueto enable,falseto disable this action
 
- 
isDefineSLA
@Deprecated boolean isDefineSLA()
Deprecated.This feature has been removedAccess method: Define SLA.- Returns:
 trueif enabled,falseif disabled
 
- 
setDefineSLA
@Deprecated void setDefineSLA(boolean defineSLA)
Deprecated.This feature has been removedSets the access method: Define SLA.- Parameters:
 defineSLA-trueto enable,falseto disable this action
 
 - 
 
 -