![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.TwoFASecret Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
package com.evrythng.thng.resource.model.store;
import com.evrythng.thng.resource.model.core.ResourceModel;
public final class TwoFASecret extends ResourceModel {
private String secretKey;
public TwoFASecret(final String secretKey) {
this.secretKey = secretKey;
}
public TwoFASecret() {
}
public String getSecretKey() {
return secretKey;
}
public void setSecretKey(final String secretKey) {
this.secretKey = secretKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy