Class AuthorTableDeleteRowsArguments
- java.lang.Object
-
- ro.sync.ecss.extensions.api.table.operations.AuthorTableDeleteRowsArguments
-
@API(type=NOT_EXTENDABLE, src=PUBLIC) public class AuthorTableDeleteRowsArguments extends java.lang.Object
Holds the arguments forAuthorTableOperationsHandler.handleDeleteRows(AuthorTableDeleteRowsArguments)
method.- Since:
- 18
-
-
Constructor Summary
Constructors Constructor Description AuthorTableDeleteRowsArguments(AuthorAccess authorAccess, java.util.List<ContentInterval> contentIntervals)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorAccess
getAuthorAccess()
java.util.List<ContentInterval>
getContentIntervals()
-
-
-
Constructor Detail
-
AuthorTableDeleteRowsArguments
public AuthorTableDeleteRowsArguments(AuthorAccess authorAccess, java.util.List<ContentInterval> contentIntervals)
Constructor.- Parameters:
authorAccess
- The Author access.contentIntervals
- The content intervals (containing the inclusive start offset and exclusive end offset) determining the rows that must be deleted. The rows that must be deleted are all the rows that intersects the given content intervals.
-
-
Method Detail
-
getAuthorAccess
public AuthorAccess getAuthorAccess()
- Returns:
- Returns the access to Author operation.
-
getContentIntervals
public java.util.List<ContentInterval> getContentIntervals()
- Returns:
- Returns the list of content intervals (containing the inclusive start offset and exclusive end offset) determining the row that must be deleted.
-
-