@Validated
public interface DomainGroupRepository
| Modifier and Type | Method and Description |
|---|---|
boolean |
delete(@NotNull String groupName)
Delete group.
|
boolean |
exists(@NotNull String groupName)
Check whether group exists or not.
|
Stream<org.bremersee.dccon.model.DomainGroup> |
findAll(String query)
Find all groups.
|
Optional<org.bremersee.dccon.model.DomainGroup> |
findOne(@NotNull String groupName)
Find group be name.
|
org.bremersee.dccon.model.DomainGroup |
save(@NotNull org.bremersee.dccon.model.DomainGroup domainGroup)
Save domain group.
|
Stream<org.bremersee.dccon.model.DomainGroup> findAll(@Nullable String query)
query - the queryOptional<org.bremersee.dccon.model.DomainGroup> findOne(@NotNull @NotNull String groupName)
groupName - the group nameboolean exists(@NotNull
@NotNull String groupName)
groupName - the group nametrue if the group exists, otherwise falseorg.bremersee.dccon.model.DomainGroup save(@NotNull
@NotNull org.bremersee.dccon.model.DomainGroup domainGroup)
domainGroup - the domain groupboolean delete(@NotNull
@NotNull String groupName)
groupName - the group nametrue if the group was removed; false if the group didn't existCopyright © 2020 bremersee.org. All rights reserved.