wisemapping-open-source/wise-webapp/src/main/java/com/wisemapping/service/LabelService.java

17 lines
507 B
Java
Raw Normal View History

package com.wisemapping.service;
import com.wisemapping.exceptions.WiseMappingException;
import com.wisemapping.model.Label;
import com.wisemapping.model.User;
import org.jetbrains.annotations.NotNull;
2014-01-26 22:21:01 +01:00
import java.util.List;
public interface LabelService {
void addLabel(@NotNull final Label label, @NotNull final User user) throws WiseMappingException;
2014-01-26 22:21:01 +01:00
@NotNull List<Label> getAll(@NotNull final User user);
2014-01-28 06:21:14 +01:00
public Label getLabelByTitle(@NotNull String title, @NotNull final User user);
}