Package com.uc4.api.objects
Interface Rights
-
- All Known Implementing Classes:
ObjectRight
,UserRight
public interface Rights
Interface for Rights.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
isCancel()
Returns the access method: Cancel.boolean
isDefineSLA()
Deprecated.This feature has been removedboolean
isDelete()
Returns the access method: Delete.boolean
isExecute()
Returns the access method: Execute.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.boolean
isRead()
Returns the access method: Read.boolean
isReport()
Access to Reports.boolean
isStatistics()
Access to Statistics.boolean
isWrite()
Returns the access method: Write.void
setCancel(boolean cancel)
Sets the access method: Cancel.void
setDefineSLA(boolean defineSLA)
Deprecated.This feature has been removedvoid
setDelete(boolean delete)
Sets the access method: Delete.void
setExecute(boolean execute)
Sets the access method: Execute.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.void
setRead(boolean read)
Sets the access method: Read.void
setReport(boolean report)
Sets access to Reports.void
setStatistics(boolean statistics)
Sets access to Statistics.void
setWrite(boolean write)
Sets the access method: Write.
-
-
-
Method Detail
-
isRead
boolean isRead()
Returns the access method: Read.- Returns:
true
if enabled,false
if disabled
-
setRead
void setRead(boolean read)
Sets the access method: Read.- Parameters:
read
-true
to enable,false
to disable this action
-
isWrite
boolean isWrite()
Returns the access method: Write.- Returns:
true
if enabled,false
if disabled
-
setWrite
void setWrite(boolean write)
Sets the access method: Write.- Parameters:
write
-true
to enable,false
to disable this action
-
isExecute
boolean isExecute()
Returns the access method: Execute.- Returns:
true
if enabled,false
if disabled
-
setExecute
void setExecute(boolean execute)
Sets the access method: Execute.- Parameters:
execute
-true
to enable,false
to disable this action
-
isDelete
boolean isDelete()
Returns the access method: Delete.- Returns:
true
if enabled,false
if disabled
-
setDelete
void setDelete(boolean delete)
Sets the access method: Delete.- Parameters:
delete
-true
to enable,false
to disable this action
-
isCancel
boolean isCancel()
Returns the access method: Cancel.- Returns:
true
if enabled,false
if disabled
-
setCancel
void setCancel(boolean cancel)
Sets the access method: Cancel.- Parameters:
cancel
-true
to enable,false
to disable this action
-
isStatistics
boolean isStatistics()
Access to Statistics.- Returns:
true
if enabled,false
if disabled
-
setStatistics
void setStatistics(boolean statistics)
Sets access to Statistics.- Parameters:
statistics
-true
to enable,false
to disable this action
-
isReport
boolean isReport()
Access to Reports.- Returns:
true
if enabled,false
if disabled
-
setReport
void setReport(boolean report)
Sets access to Reports.- Parameters:
report
-true
to enable,false
to 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:
true
if enabled,false
if 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
-true
to enable,false
to disable this action
-
isDefineSLA
@Deprecated boolean isDefineSLA()
Deprecated.This feature has been removedAccess method: Define SLA.- Returns:
true
if enabled,false
if disabled
-
setDefineSLA
@Deprecated void setDefineSLA(boolean defineSLA)
Deprecated.This feature has been removedSets the access method: Define SLA.- Parameters:
defineSLA
-true
to enable,false
to disable this action
-
-