package weblog.business.libs;

import weblog.business.apis.AuthenticationService;

public class AuthenticationServiceImpl implements AuthenticationService {
    public AuthenticationServiceImpl() {}

    public boolean authenticate(String userid, String passwd) {
        return (userid.equals("kheops") && passwd.equals("is great"));
    }
}