Since: API level 19
public class

SdpDomain

extends Object
implements Serializable
java.lang.Object
   ↳ com.samsung.android.knox.sdp.core.SdpDomain

Deprecated in API level 33

Class Overview

Defines the domain to applications for accessing SDP features.

Since
API level 19
KNOX 2.6

Summary

Public Constructors
SdpDomain(String alias, String pkgName)
Deprecated in API level 33
Public Methods
String getAlias()
Deprecated in API level 33
String getPackageName()
Deprecated in API level 33
String toString()
Deprecated in API level 33
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SdpDomain (String alias, String pkgName)

Since: API level 19

Deprecated in API level 33

Construct a new SdpDomain object with the given parameters.

Usage:

        An application developer can use this constructor to create an instance of the object.


      SdpDomain sdpDomain   = new SdpDomain(alias, packageName);

 

Parameters
alias A unique String identifier for SdpEngine.
pkgName Application package name.
Since
API level 19
KNOX 2.6
Multiuser Environment
User Scope
See Also

Public Methods

public String getAlias ()

Since: API level 19

Deprecated in API level 33

Accessor for SdpEngine alias.

Returns
Since
API level 19
KNOX 2.6
Multiuser Environment
User Scope
See Also

public String getPackageName ()

Since: API level 19

Deprecated in API level 33

Accessor for application package name.

Returns
  • Application package name.
Since
API level 19
KNOX 2.6
Multiuser Environment
User Scope

public String toString ()

Since: API level

Deprecated in API level 33

API represents SdpDomain object in a String format.

Usage:

        An application developer can use this API to get the SdpDomain object in a String format.


      SdpDomain sdpDomain   = new SdpDomain(alias, packageName);

      Log.d(TAG, "SdpDomain : " + sdpDomain.toString());

 

Returns
  • A String representation of the SdpDomain object.
Since
API level 19
KNOX 2.6
Multiuser Environment
User Scope