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

examples.authorization.AccountManagerImpl Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package examples.authorization;

import javax.sip.ClientTransaction;

import gov.nist.javax.sip.clientauthutils.AccountManager;
import gov.nist.javax.sip.clientauthutils.UserCredentials;

public class AccountManagerImpl implements AccountManager {
    

    public UserCredentials getCredentials(ClientTransaction challengedTransaction, String realm) {
       return new UserCredentialsImpl("auth","nist.gov","pass");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy