mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-19 02:05:32 +08:00
13 lines
341 B
Java
13 lines
341 B
Java
|
package com.wisemapping.service;
|
||
|
|
||
|
import com.wisemapping.exceptions.WiseMappingException;
|
||
|
import com.wisemapping.model.Label;
|
||
|
import com.wisemapping.model.User;
|
||
|
import org.jetbrains.annotations.NotNull;
|
||
|
|
||
|
public interface LabelService {
|
||
|
|
||
|
void addLabel(@NotNull final Label label, @NotNull final User user) throws WiseMappingException;
|
||
|
|
||
|
}
|