All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infusers.core.user.util.UserUtility Maven / Gradle / Ivy

There is a newer version: 2025.01.0002
Show newest version
package com.infusers.core.user.util;

import com.infusers.core.user.dto.UserCredDto;

public class UserUtility {
	
	private UserUtility() {
		
	}

	public static boolean isValid(UserCredDto userCred) {
		String username = userCred.getUsername();
		String password = userCred.getPassword();
		
		return username!=null && username.length()!=0 && password!=null && password.length()!=0;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy