File tree Expand file tree Collapse file tree
sdk/src/main/java/org/zstack/sdk Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ CREATE TABLE IF NOT EXISTS `zstack`.`KmsVO` (
6565 ` kmipVersion` varchar (32 ) DEFAULT NULL ,
6666 ` username` varchar (255 ) DEFAULT NULL ,
6767 ` password` varchar (255 ) DEFAULT NULL ,
68- ` trusted ` boolean NOT NULL DEFAULT FALSE ,
68+ ` trustState ` varchar ( 32 ) NOT NULL DEFAULT ' MUTUAL_UNTRUSTED ' ,
6969 ` activeIdentityUuid` varchar (32 ) DEFAULT NULL ,
7070 ` serverCertExpiredDate` timestamp NULL DEFAULT NULL ,
7171 ` serverCertPem` text DEFAULT NULL ,
Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ public java.lang.String getUsername() {
3737 return this .username ;
3838 }
3939
40- public boolean trusted ;
41- public void setTrusted ( boolean trusted ) {
42- this .trusted = trusted ;
40+ public java . lang . String trustState ;
41+ public void setTrustState ( java . lang . String trustState ) {
42+ this .trustState = trustState ;
4343 }
44- public boolean getTrusted () {
45- return this .trusted ;
44+ public java . lang . String getTrustState () {
45+ return this .trustState ;
4646 }
4747
4848 public java .lang .String activeIdentityUuid ;
You can’t perform that action at this time.
0 commit comments