Final answer:
The task is to create an interface called PasswordReport with methods to check password characteristics and a class PasswordHolder that stores a password and implements these methods.
Step-by-step explanation:
The question pertains to creating an interface named PasswordReport and a class named PasswordHolder in the context of object-oriented programming. The interface should define methods that check specific characteristics of a password, while the class should implement these methods and store the password as a private attribute. The class should provide functionality to verify if the password has at least one uppercase letter, alphabetic character, a certain number of digits, and contains specific symbols such as pound or underscore. A constructor is needed for initializing the password attribute when an object is instantiated.
Here is an example of how the interface and class should be implemented in Java:
public interface PasswordReport {
boolean containsCapital();
boolean containsAlpha();
boolean containsNumberCount(int count);
boolean containsPoundOrUnder();
}
public class PasswordHolder implements PasswordReport {
private String password;
public PasswordHolder(String password) {
this.password = password;
}
public boolean containsCapital() {
return password.matches(".*[A-Z]+.*");
}
public boolean containsAlpha() {
return password.matches(".*[a-zA-Z]+.*");
}
public boolean containsNumberCount(int count) {
return password.replaceAll("[^0-9]", "").length() >= count;
}
public boolean containsPoundOrUnder() password.contains("_");
}
Note that this is a simplified example, and in a complete application, you might include additional functionality for security and validation purposes.