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

com.emc.mongoose.base.storage.Credential Maven / Gradle / Ivy

There is a newer version: 4.3.10
Show newest version
package com.emc.mongoose.base.storage;

/** Created by andrey on 14.03.17. */
public interface Credential {

	String getUid();

	String getSecret();

	static Credential getInstance(final String uid, final String secret) {
		if (uid == null && secret == null) {
			return null;
		}
		return new CredentialImpl(uid, secret);
	}

	Credential NONE = new CredentialImpl(null, null);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy