Application

public class Application

An Application lists the characteristics of an IoT CS application.

  • Application identifier.

    Declaration

    Swift

    public func getId() -> String

    Return Value

    The identifier of the application.

  • Name of the application.

    Declaration

    Swift

    public func getName() -> String

    Return Value

    The name of the application.

  • Free form description of the application.

    Declaration

    Swift

    public func getDescription() -> String

    Return Value

    The description of the application.

  • Get the application Metadata for the specified key.

    Declaration

    Swift

    public func getMetadata(key: String) -> String?

    Parameters

    key

    The metadata to look for.

    Return Value

    The value corresponding to the specified key.

  • Get the application Metadata.

    Declaration

    Swift

    public func getMetadata() -> [String : String]

    Return Value

    A Dictionary associating keys and values.