Package io.fabric8.openshift.api.model
Class SignatureSubject
- java.lang.Object
-
- io.fabric8.openshift.api.model.SignatureSubject
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<SignatureSubjectBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class SignatureSubject extends Object implements io.fabric8.kubernetes.api.builder.Editable<SignatureSubjectBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
SignatureSubject holds information about a person or entity who created the signature.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SignatureSubject()No args constructor for use in serializationSignatureSubject(String commonName, String organization, String publicKeyID)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SignatureSubjectBuilderedit()Map<String,Object>getAdditionalProperties()StringgetCommonName()Common name (e.g. openshift-signing-service).StringgetOrganization()organization name.StringgetPublicKeyID()If present, it is a human readable key id of public key belonging to the subject used to verify image signature.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetCommonName(String commonName)Common name (e.g. openshift-signing-service).voidsetOrganization(String organization)organization name.voidsetPublicKeyID(String publicKeyID)If present, it is a human readable key id of public key belonging to the subject used to verify image signature.SignatureSubjectBuildertoBuilder()
-
-
-
Method Detail
-
getCommonName
public String getCommonName()
Common name (e.g. openshift-signing-service).
-
setCommonName
public void setCommonName(String commonName)
Common name (e.g. openshift-signing-service).
-
getOrganization
public String getOrganization()
organization name.
-
setOrganization
public void setOrganization(String organization)
organization name.
-
getPublicKeyID
public String getPublicKeyID()
If present, it is a human readable key id of public key belonging to the subject used to verify image signature. It should contain at least 64 lowest bits of public key's fingerprint (e.g. 0x685ebe62bf278440).
-
setPublicKeyID
public void setPublicKeyID(String publicKeyID)
If present, it is a human readable key id of public key belonging to the subject used to verify image signature. It should contain at least 64 lowest bits of public key's fingerprint (e.g. 0x685ebe62bf278440).
-
edit
public SignatureSubjectBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<SignatureSubjectBuilder>
-
toBuilder
public SignatureSubjectBuilder toBuilder()
-
-