com.github.antelopeframework.remoting.server.auth.DefaultCallAuthenticate Maven / Gradle / Ivy
package com.github.antelopeframework.remoting.server.auth;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@Setter
public class DefaultCallAuthenticate implements RemoteCallAuthenticate {
String user;
String password;
public boolean auth(String app, String username, String password) {
if (log.isInfoEnabled()) {
log.info("remote call: app={}, username={}, password={}", app, username, password);
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy