2011-01-23 20:34:05 -03:00
|
|
|
/*
|
|
|
|
* Copyright [2011] [wisemapping]
|
|
|
|
*
|
2011-01-23 21:03:12 -03:00
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
2011-01-23 20:34:05 -03:00
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
package com.wisemapping.dao;
|
|
|
|
|
|
|
|
import com.wisemapping.model.*;
|
2012-06-09 22:49:54 -03:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface MindmapManager {
|
|
|
|
|
2012-06-17 23:21:02 -03:00
|
|
|
Collaborator findCollaborator(@NotNull String email);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-06-17 21:43:34 -03:00
|
|
|
Collaborator findCollaborator(long id);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-06-17 21:43:34 -03:00
|
|
|
List<Collaboration> findCollaboration(final long collaboratorId);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-06-17 21:43:34 -03:00
|
|
|
List<Collaboration> findCollaboration(final CollaborationRole userRole);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-06-17 21:43:34 -03:00
|
|
|
Collaboration findCollaboration(final int mindmapId, final User user);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
List<MindMap> getAllMindmaps();
|
|
|
|
|
|
|
|
MindMap getMindmapById(int mindmapId);
|
|
|
|
|
|
|
|
MindMap getMindmapByTitle(final String name, final User user);
|
|
|
|
|
2012-02-21 14:22:43 -03:00
|
|
|
void addCollaborator(Collaborator collaborator);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
void addMindmap(User user, MindMap mindMap);
|
|
|
|
|
|
|
|
void saveMindmap(MindMap mindMap);
|
|
|
|
|
2012-06-17 02:51:01 -03:00
|
|
|
void updateMindmap(@NotNull MindMap mindMap, boolean saveHistory);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-06-09 22:49:54 -03:00
|
|
|
void removeCollaborator(@NotNull Collaborator collaborator);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
void removeMindmap(MindMap mindap);
|
|
|
|
|
2012-06-09 22:49:54 -03:00
|
|
|
void removeCollaboration(Collaboration collaboration);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
public List<MindMap> search(MindMapCriteria criteria);
|
|
|
|
|
|
|
|
public List<MindMap> search(MindMapCriteria criteria, int maxResult);
|
|
|
|
|
|
|
|
public List<MindMapHistory> getHistoryFrom(int mindmapId);
|
|
|
|
|
|
|
|
public MindMapHistory getHistory(int historyId);
|
2012-06-17 23:21:02 -03:00
|
|
|
|
|
|
|
void updateCollaboration(@NotNull Collaboration collaboration);
|
2009-06-07 18:59:43 +00:00
|
|
|
}
|