Create a project with 2 Java class files. 

Create a project with 2 Java class files.

Create two new Java files and save as PasswordVerifier.java & PasswordDemo.java and add them to your project.

o PasswordVerifier will contain class (of static) methods to check conditions required for a valid password

o PasswordDemo.java will contain a main method with console I/O to prompt a user for a password via I/O method

Systematically, add and unit test the above/following six static methods to your PasswordVerifier class

1. Create the empty class PasswordVerifier with one static field: MINIMUM_PASSWORD_LENGTH.

2. Fix your indentation and get each method to compile before moving on to the next step .

public class PasswordVerifier { // Constant for minimum password length private static int MINIMUM_PASSWORD_LENGTH = 6; }

A. isMinimumLength: Add a static boolean method that returns true if the string argument passed into the method contains at least the minimum number of characters; false otherwise Unit test your method

B. hasUpperCase: Add a static boolean method that returns true if the string argument passed into the method contains at least one uppercase letter; false otherwise Unit test your method LAB 3

C. hasLowerCase: Add a static boolean method that returns true if the string argument passed into the method contains at least one lower letter; false otherwise Unit test your method

D. hasDigit: Add a static boolean method that returns true if the string argument passed into the method contains at least one digit; false otherwise Unit test your method

E. hasLegalChars: Add a static boolean method that returns true if the string argument passed into the method contains no characters other than only letters (A..Z, a..z), digits (0..9), and the underscore character (‘_’); false otherwise Unit test your method LAB 3

F. isValid: Add a static boolean method that returns true if the string argument passed into the method has at least the minimum number of characters, has at least one uppercase, one lowercase, one digit, and has only legal characters; false otherwise Hint: Use your existing class methods, do not rewrite their logic. Unit test your method

Write a main method that uses your static class methods

Add a main method to your PasswordDemo class that

1. Prompts for and reads in a user password

2. Calls the isValid static method in PasswordVerifier to validate the password

3. Displays whether the password is valid or not

Calculate the price of your order

Simple Order Process

Fill in the Order Form

Share all the assignment information. Including the instructions, provided reading materials, grading rubric, number of pages, the required formatting, deadline, and your academic level. Provide any information and announcements shared by the professor. Choose your preferred writer if you have one.

Get Your Order Assigned

Once we receive your order form, we will select the best writer from our pool of experts to fit your assignment.

Share More Data if Needed

You will receive a confirmation email when a writer has been assigned your task. The writer may contact you if they need any additional information or clarifications regarding your task

Let Our Essay Writer Do Their Job

Once you entrust us with your academic task, our skilled writers embark on creating your paper entirely from the ground up. Through rigorous research and unwavering commitment to your guidelines, our experts meticulously craft every aspect of your paper. Our process ensures that your essay is not only original but also aligned with your specific requirements, making certain that the final piece surpasses your expectations.

Quality Checks and Proofreading

Upon the completion of your paper, it undergoes a meticulous review by our dedicated Quality and Proofreading department. This crucial step ensures not only the originality of the content but also its alignment with the highest academic standards. Our seasoned experts conduct thorough checks, meticulously examining every facet of your paper, including grammar, structure, coherence, and proper citation. This comprehensive review process guarantees that the final product you receive not only meets our stringent quality benchmarks but also reflects your dedication to academic excellence.

Review and Download the Final Draft

If you find that any part of the paper does not meet the initial instructions, send it back to us with your feedback, and we will make the necessary adjustments.