Deprecate old interfaces and util classes and reference new one

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-06-24 10:16:29 +02:00
parent 9f43eb5278
commit 1e753e0250
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
3 changed files with 9 additions and 1 deletions

View File

@ -27,6 +27,10 @@ import io.requery.Persistable;
import java.io.Serializable;
/**
* Legacy arbitrary storage entity, please migrate to {@link com.nextcloud.talk.data.storage.model.ArbitraryStorage}.
*/
@Deprecated
@Entity
public interface ArbitraryStorage extends Parcelable, Persistable, Serializable {
@Key

View File

@ -34,7 +34,7 @@ import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
/**
* Deprecated, please use CapabilitiesNgUtil
* Deprecated, please migrate to {@link com.nextcloud.talk.utils.database.user.CapabilitiesUtilNew}.
*/
@Deprecated
public abstract class CapabilitiesUtil {

View File

@ -30,6 +30,10 @@ import io.requery.Generated;
import io.requery.Key;
import io.requery.Persistable;
/**
* Legacy user entity, please migrate to {@link com.nextcloud.talk.data.user.model.User}.
*/
@Deprecated
@Entity
public interface User extends Parcelable, Persistable, Serializable {
String TAG = "UserEntity";