All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.samsung.knoxwsm.identity.KnoxIdentity Maven / Gradle / Ivy

package com.samsung.knoxwsm.identity;

import java.security.KeyPair;

/**
 * Represents Identifier used for calling Knox Apis.
 */
public class KnoxIdentity {

    private KeyPair keyPair;

    private String identifier;

    public KnoxIdentity(KeyPair keyPair, String identifier) {
        this.keyPair = keyPair;
        this.identifier = identifier;
    }

    public KeyPair getKeyPair() {
        return keyPair;
    }

    public String getIdentifier() {
        return identifier;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy