Revert "Add deprecation notice to GetOwner and SetOwner for groups"

As explained in change Id18851f503 we want to continue supporting the
GetOwner and SetOwner REST endpoints, hence revert the deprecation.

This reverts commit a61a631959.

Change-Id: Ie311c6c694195d939c508f35dd0b4c0cffa2ec72
This commit is contained in:
Edwin Kempin
2017-11-13 11:08:45 +01:00
parent b3d9736f25
commit 529cf2f090
2 changed files with 1 additions and 13 deletions

View File

@@ -40,12 +40,7 @@ public interface GroupApi {
*/
void name(String name) throws RestApiException;
/**
* @return owning group info.
* @deprecated for groups in NoteDb, use READ/PUSH permissions on the group ref to express
* ownership.
*/
@Deprecated
/** @return owning group info. */
GroupInfo owner() throws RestApiException;
/**
@@ -53,10 +48,7 @@ public interface GroupApi {
*
* @param owner identifier of new group owner.
* @throws RestApiException
* @deprecated for groups in NoteDb, use READ/PUSH permissions on the group ref to express
* ownership.
*/
@Deprecated
void owner(String owner) throws RestApiException;
/** @return group description. */