Package com.amazonaws.internal.config
Class SignerConfigJsonHelper
- java.lang.Object
-
- com.amazonaws.internal.config.SignerConfigJsonHelper
-
- All Implemented Interfaces:
Builder<SignerConfig>
public class SignerConfigJsonHelper extends Object implements Builder<SignerConfig>
An internal class used to buildSignerConfig
after this class per se has been unmarshalled from JSON. This class allows us to make use of Jackson without the need to write any special parser or json marshaller/unmarshaller.
-
-
Constructor Summary
Constructors Constructor Description SignerConfigJsonHelper()
SignerConfigJsonHelper(String signerType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SignerConfig
build()
String
getSignerType()
void
setSignerType(String signerType)
-
-
-
Constructor Detail
-
SignerConfigJsonHelper
public SignerConfigJsonHelper()
-
SignerConfigJsonHelper
public SignerConfigJsonHelper(String signerType)
-
-
Method Detail
-
getSignerType
public String getSignerType()
-
setSignerType
public void setSignerType(String signerType)
-
build
public SignerConfig build()
- Specified by:
build
in interfaceBuilder<SignerConfig>
-
-