Package com.day.cq.wcm.api.msm
Interface LiveStatus
-
- All Superinterfaces:
JSONItem
@Deprecated public interface LiveStatus extends JSONItem
Deprecated.since 5.3 useLiveStatus
instead
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Boolean>
getAdvancedStatus()
Deprecated.Returns a map of pairs (name, status) which contains advanced status for the current relationship.java.lang.Boolean
getAdvancedStatus(java.lang.String status)
Deprecated.Returns value of an advanced status.java.util.List<java.lang.String>
getCanceledProperties()
Deprecated.Returns names of properties for which inheritance is canceled.boolean
isCancelled()
Deprecated.Returns true if relationship is cancelledboolean
isCancelledForChildren()
Deprecated.Returns true if relationship is cancelled for children relationships.boolean
isEditable()
Deprecated.Returns true if relationship can be edited, ie can be cancelled.boolean
isSourceExisting()
Deprecated.Returns true if relationship's source existsboolean
isTargetExisting()
Deprecated.Returns true if relationship's target exists
-
-
-
Method Detail
-
isCancelled
boolean isCancelled()
Deprecated.Returns true if relationship is cancelled- Returns:
- true if relationship is cancelled
-
isCancelledForChildren
boolean isCancelledForChildren()
Deprecated.Returns true if relationship is cancelled for children relationships. Only possible if isCancelled() is true.- Returns:
- true if relationship is cancelled for children relationships
-
isEditable
boolean isEditable()
Deprecated.Returns true if relationship can be edited, ie can be cancelled.- Returns:
- true if relationship can be edited
-
isSourceExisting
boolean isSourceExisting()
Deprecated.Returns true if relationship's source exists- Returns:
- true if relationship's source exists
-
isTargetExisting
boolean isTargetExisting()
Deprecated.Returns true if relationship's target exists- Returns:
- true if relationship's target exists
-
getAdvancedStatus
java.util.Map<java.lang.String,java.lang.Boolean> getAdvancedStatus()
Deprecated.Returns a map of pairs (name, status) which contains advanced status for the current relationship.- Returns:
- map of status
-
getAdvancedStatus
java.lang.Boolean getAdvancedStatus(java.lang.String status)
Deprecated.Returns value of an advanced status.- Parameters:
status
- Status string for which advance status to be fetch.- Returns:
- value of advanced status
-
getCanceledProperties
java.util.List<java.lang.String> getCanceledProperties()
Deprecated.Returns names of properties for which inheritance is canceled.- Returns:
- value of advanced status
-
-