Skip to content

Commit

Permalink
feat: Adapt Mocked SpaceService API in Test context - MEED-7590 - Mee…
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Oct 14, 2024
1 parent 118b0f2 commit bf1360b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 541 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,6 @@ public void saveSpace(Space space, boolean isNew) throws SpaceException {

}

public void renameSpace(Space space, String newDisplayName) throws SpaceException {
throw new UnsupportedOperationException();

}

public void renameSpace(Space space, String newDisplayName, String remoteId) throws SpaceException {
throw new UnsupportedOperationException();

Expand All @@ -321,16 +316,6 @@ public void deInitApps(Space space) throws SpaceException {

}

public void addMember(String spaceId, String userId) throws SpaceException {
throw new UnsupportedOperationException();

}

public void removeMember(String spaceId, String userId) throws SpaceException {
throw new UnsupportedOperationException();

}

public List<String> getMembers(Space space) throws SpaceException {
throw new UnsupportedOperationException();

Expand Down Expand Up @@ -370,11 +355,6 @@ public boolean isOnlyLeader(String spaceId, String userId) throws SpaceException
throw new UnsupportedOperationException();
}

public boolean isMember(String spaceId, String userId) throws SpaceException {
throw new UnsupportedOperationException();

}

public boolean hasAccessPermission(String spaceId, String userId) throws SpaceException {
throw new UnsupportedOperationException();
}
Expand Down Expand Up @@ -444,11 +424,6 @@ public void removeApplication(String spaceId, String appId, String appName) thro

}

public void updateSpaceAccessed(String remoteId, Space space) throws SpaceException {
throw new UnsupportedOperationException();

}

public List<Space> getLastAccessedSpace(String remoteId, String appId, int offset, int limit) throws SpaceException {
throw new UnsupportedOperationException();
}
Expand Down
Loading

0 comments on commit bf1360b

Please sign in to comment.