LDAP sslSwitch

This commit is contained in:
Crystal.Sea
2021-06-21 22:53:02 +08:00
parent 27a01fb89a
commit cfe4b5ac6e
2 changed files with 13 additions and 11 deletions

View File

@@ -62,7 +62,7 @@ public class Synchronizers extends JpaBaseEntity implements Serializable {
@Column
String msadDomain;
@Column
String ssl;
String sslSwitch;
@Column
String trustStore;
@Column
@@ -193,15 +193,17 @@ public class Synchronizers extends JpaBaseEntity implements Serializable {
this.msadDomain = msadDomain;
}
public String getSsl() {
return ssl;
}
public void setSsl(String ssl) {
this.ssl = ssl;
}
public String getSslSwitch() {
return sslSwitch;
}
public String getTrustStore() {
public void setSslSwitch(String sslSwitch) {
this.sslSwitch = sslSwitch;
}
public String getTrustStore() {
return trustStore;
}
@@ -294,8 +296,8 @@ public class Synchronizers extends JpaBaseEntity implements Serializable {
builder.append(basedn);
builder.append(", msadDomain=");
builder.append(msadDomain);
builder.append(", ssl=");
builder.append(ssl);
builder.append(", sslSwitch=");
builder.append(sslSwitch);
builder.append(", trustStore=");
builder.append(trustStore);
builder.append(", trustStorePassword=");

View File

@@ -119,7 +119,7 @@
<tr>
<th><@locale code="synchronizers.ssl" /></th>
<td nowrap>
<input type="text" id="ssl" name="ssl" class="form-control" title="" value="${model.ssl!}" />
<input type="text" id="sslSwitch" name="sslSwitch" class="form-control" title="" value="${model.sslSwitch!}" />
</td>
</tr>
<tr>