implemented easy-list
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -20,6 +20,7 @@ public class Paths {
|
||||
public static final String STARTED = "started";
|
||||
public static final String STOP = "stop";
|
||||
public static final String SUBMIT = "submit";
|
||||
public static final String TAGGED = "tagged";
|
||||
public static final String TOKEN = "token";
|
||||
public static final String VIEW = "view";
|
||||
}
|
||||
|
||||
@@ -4,11 +4,14 @@ package de.srsoftware.umbrella.core.api;
|
||||
import de.srsoftware.umbrella.core.exceptions.UmbrellaException;
|
||||
import de.srsoftware.umbrella.core.model.UmbrellaUser;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface TagService {
|
||||
void deleteEntity(String task, long taskId);
|
||||
|
||||
Map<String, List<Long>> getTagUses(UmbrellaUser user, String tag);
|
||||
|
||||
Collection<String> getTags(String module, long entityId, UmbrellaUser user) throws UmbrellaException;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user