public class Ssl extends AbstractOvsdbTableService
| Modifier and Type | Class and Description |
|---|---|
static class |
Ssl.SslColumn
Ssl table column name.
|
| Constructor and Description |
|---|
Ssl(DatabaseSchema dbSchema,
Row row)
Constructs a Ssl object.
|
| Modifier and Type | Method and Description |
|---|---|
Column |
getBootstrapCaCertColumn()
Get the Column entity which column name is "bootstrap_ca_cert" from the
Row entity of attributes.
|
Column |
getCaCertColumn()
Get the Column entity which column name is "ca_cert" from the Row entity
of attributes.
|
Column |
getCertificateColumn()
Get the Column entity which column name is "certificate" from the Row
entity of attributes.
|
Column |
getExternalIdsColumn()
Get the Column entity which column name is "external_ids" from the Row
entity of attributes.
|
Column |
getPrivateKeyColumn()
Get the Column entity which column name is "private_key" from the Row
entity of attributes.
|
void |
setBootstrapCaCert(Boolean bootstrapCaCert)
Add a Column entity which column name is "bootstrap_ca_cert" to the Row
entity of attributes.
|
void |
setCaCert(String caCert)
Add a Column entity which column name is "ca_cert" to the Row entity of
attributes.
|
void |
setCertificate(String certificate)
Add a Column entity which column name is "certificate" to the Row entity
of attributes.
|
void |
setExternalIds(Map<String,String> externalIds)
Add a Column entity which column name is "external_ids" to the Row entity
of attributes.
|
void |
setPrivateKey(String privatekey)
Add a Column entity which column name is "private_key" to the Row entity
of attributes.
|
dbSchema, equals, getColumnHandler, getDataHandler, getRow, getTableUuid, getTableUuidColumn, getTableVersion, getTableVersionColumn, hashCode, setDataHandler, tableDesc, toStringpublic Ssl(DatabaseSchema dbSchema, Row row)
dbSchema - DatabaseSchemarow - Rowpublic Column getCaCertColumn()
public void setCaCert(String caCert)
caCert - the column data which column name is "ca_cert"public Column getExternalIdsColumn()
public void setExternalIds(Map<String,String> externalIds)
externalIds - the column data which column name is "external_ids"public Column getBootstrapCaCertColumn()
public void setBootstrapCaCert(Boolean bootstrapCaCert)
bootstrapCaCert - the column data which column name is
"bootstrap_ca_cert"public Column getCertificateColumn()
public void setCertificate(String certificate)
certificate - the column data which column name is "certificate"public Column getPrivateKeyColumn()
public void setPrivateKey(String privatekey)
privatekey - the column data which column name is "private_key"