- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
358 B
Java
19 lines
358 B
Java
package com.amazonaws.internal.config;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class SignerConfig {
|
|
public final String signerType;
|
|
|
|
public String getSignerType() {
|
|
return this.signerType;
|
|
}
|
|
|
|
public String toString() {
|
|
return this.signerType;
|
|
}
|
|
|
|
public SignerConfig(String str) {
|
|
this.signerType = str;
|
|
}
|
|
}
|