mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-04 19:34:30 +08:00
20 lines
465 B
Java
20 lines
465 B
Java
package com.wisemapping.dao;
|
|
|
|
import com.wisemapping.model.Label;
|
|
import com.wisemapping.model.User;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.util.List;
|
|
|
|
public interface LabelManager {
|
|
|
|
void addLabel(@NotNull final Label label);
|
|
|
|
void saveLabel(@NotNull final Label label);
|
|
|
|
@NotNull
|
|
List<Label> getAllLabels(@NotNull final User user);
|
|
@Nullable
|
|
Label getLabelByTitle(@NotNull final String title, @NotNull final User user);
|
|
}
|