- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for getPassword (0.05 sec)
-
FileConfig.java
smbAuth.setServer(fileAuth.getHostname()); L176: smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort()); L177: smbAuth.setUsername(fileAuth.getUsername()); L178: smbAuth.setPassword(fileAuth.getPassword()); L179: smbAuthList.add(smbAuth); L180: L181: final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth = L182: new org.codelibs.fess.crawler.client.smb1.SmbAuthentication();...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.8K bytes -
WebAuthenticationDbm.java
((WebAuthentication) et).getParameters(), L91: (et, vl) -> ((WebAuthentication) et).setParameters(DfTypeUtil.toString(vl)), "parameters"); L92: setupEpg(_epgMap, et -> ((WebAuthentication) et).getPassword(), L93: (et, vl) -> ((WebAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password"); L94: setupEpg(_epgMap, et -> ((WebAuthentication) et).getPort(), (et, vl) -> ((WebAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), L95: "port");...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 13K bytes -
FileAuthenticationDbm.java
((FileAuthentication) et).getParameters(), L91: (et, vl) -> ((FileAuthentication) et).setParameters(DfTypeUtil.toString(vl)), "parameters"); L92: setupEpg(_epgMap, et -> ((FileAuthentication) et).getPassword(), L93: (et, vl) -> ((FileAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password"); L94: setupEpg(_epgMap, et -> ((FileAuthentication) et).getPort(), L95: (et, vl) -> ((FileAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), "port");...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12.6K bytes -
UserDbm.java
et).setName(DfTypeUtil.toString(vl)), "name"); L115: setupEpg(_epgMap, et -> ((User) et).getPager(), (et, vl) -> ((User) et).setPager(DfTypeUtil.toString(vl)), "pager"); L116: setupEpg(_epgMap, et -> ((User) et).getPassword(), (et, vl) -> ((User) et).setPassword(DfTypeUtil.toString(vl)), "password"); L117: setupEpg(_epgMap, et -> ((User) et).getPhysicalDeliveryOfficeName(), L118: (et, vl) -> ((User) et).setPhysicalDeliveryOfficeName(DfTypeUtil.toString(vl)), "p...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 27K bytes -
BsUser.java
L588: L589: public void setPager(String value) { L590: registerModifiedProperty("pager"); L591: this.pager = value; L592: } L593: L594: public String getPassword() { L595: checkSpecifiedProperty("password"); L596: return convertEmptyToNull(password); L597: } L598: L599: public void setPassword(String value) { L600: registerModifiedProperty("password"); L601: this.password = value; L602: } L603: L604: public String getPhysicalDeliveryOfficeName()...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 22.8K bytes -
BsFileAuthenticationBhv.java
result.setFileConfigId(DfTypeUtil.toString(source.get("fileConfigId"))); L79: result.setHostname(DfTypeUtil.toString(source.get("hostname"))); L80: result.setParameters(DfTypeUtil.toString(source.get("parameters"))); L81: result.setPassword(DfTypeUtil.toString(source.get("password"))); L82: result.setPort(DfTypeUtil.toInteger(source.get("port"))); L83: result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme"))); L84: result.setUpdat...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.4K bytes -
DataConfig.java
NumberFormatException e) { L238: logger.warn("Failed to parse {}", port, e); L239: } L240: } L241: smbAuth.setUsername(username); L242: smbAuth.setPassword(password == null ? StringUtil.EMPTY : password); L243: smbAuthList.add(smbAuth); L244: L245: final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth = L246: new org...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 18.5K bytes -
BsWebAuthenticationBhv.java
result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); L79: result.setHostname(DfTypeUtil.toString(source.get("hostname"))); L80: result.setParameters(DfTypeUtil.toString(source.get("parameters"))); L81: result.setPassword(DfTypeUtil.toString(source.get("password"))); L82: result.setPort(DfTypeUtil.toInteger(source.get("port"))); L83: result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme"))); L84: result.setUpdat...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.4K bytes -
BsUserBhv.java
L96: result.setMobile(DfTypeUtil.toString(source.get("mobile"))); L97: result.setName(DfTypeUtil.toString(source.get("name"))); L98: result.setPager(DfTypeUtil.toString(source.get("pager"))); L99: result.setPassword(DfTypeUtil.toString(source.get("password"))); L100: result.setPhysicalDeliveryOfficeName(DfTypeUtil.toString(source.get("physicalDeliveryOfficeName"))); L101: result.setPostOfficeBox(DfTypeUtil.toString(source.get("postOfficeBox")));...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12K bytes -
AdminUserAction.java
form.password)) { L307: final String encodedPassword = ComponentUtil.getComponent(FessLoginAssist.class).encryptPassword(form.password); L308: entity.setOriginalPassword(form.password); L309: entity.setPassword(encodedPassword); L310: } L311: return entity; L312: }); L313: } L314: L315: protected Map<String, String> createItem(final String label, final String value) { L316: final Map<String, String> map = new HashMap<>(2);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.9K bytes