PasswordsFilePersistence class

Inheritance

Constructors

PasswordsFilePersistence([String path])

Properties

persister ↔ JsonFilePersister<UserPasswordV1>
read / write
hashCode → int
The hash code for this object. [...]
read-only, inherited
items ↔ List<UserPasswordV1>
read / write, inherited
loader ↔ ILoader<UserPasswordV1>
read / write, inherited
logger ↔ CompositeLogger
read / write, inherited
maxPageSize ↔ int
read / write, inherited
opened ↔ bool
read / write, inherited
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited
saver ↔ ISaver<UserPasswordV1>
read / write, inherited

Methods

configure(ConfigParams config) → void
Configures component by passing configuration parameters. [...]
clear(String correlationId) → Future
Clears component state. [...]
inherited
close(String correlationId) → Future
Closes component and frees used resources. [...]
inherited
create(String correlationId, UserPasswordV1 item) → Future<UserPasswordV1>
Creates a data item. [...]
inherited
deleteByFilterEx(String correlationId, dynamic filter) → Future
Deletes data items that match to a given filter. [...]
inherited
deleteById(String correlationId, String id) → Future<UserPasswordV1>
Deleted a data item by it's unique id. [...]
inherited
deleteByIds(String correlationId, List<String> ids) → Future
Deletes multiple data items by their unique ids. [...]
inherited
getCountByFilterEx(String correlationId, dynamic filter) → Future<int>
Gets a count of data items retrieved by a given filter. [...]
inherited
getListByFilterEx(String correlationId, dynamic filter, dynamic sort, dynamic select) → Future<List<UserPasswordV1>>
Gets a list of data items retrieved by a given filter and sorted according to sort parameters. [...]
inherited
getListByIds(String correlationId, List<String> ids) → Future<List<UserPasswordV1>>
Gets a list of data items retrieved by given unique ids. [...]
inherited
getOneById(String correlationId, String id) → Future<UserPasswordV1>
Gets a data item by its unique id. [...]
inherited
getOneRandom(String correlationId, dynamic filter) → Future<UserPasswordV1>
Gets a random item from items that match to a given filter. [...]
inherited
getPageByFilterEx(String correlationId, Function filter, PagingParams paging, Function sort) → Future<DataPage<UserPasswordV1>>
Gets a page of data items retrieved by a given filter and sorted according to sort parameters. [...]
inherited
isOpen() → bool
Checks if the component is opened. [...]
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
open(String correlationId) → Future
Opens the component. [...]
inherited
save(String correlationId) → Future
Saves items to external data source using configured saver component. [...]
inherited
set(String correlationId, UserPasswordV1 item) → Future<UserPasswordV1>
Sets a data item. If the data item exists it updates it, otherwise it create a new data item. [...]
inherited
setReferences(IReferences references) → void
Sets references to dependent components. [...]
inherited
toString() → String
Returns a string representation of this object.
inherited
update(String correlationId, UserPasswordV1 item) → Future<UserPasswordV1>
Updates a data item. [...]
inherited
updatePartially(String correlationId, String id, AnyValueMap data) → Future<UserPasswordV1>
Updates only few selected fields in a data item. [...]
inherited

Operators

operator ==(dynamic other) → bool
The equality operator. [...]
inherited