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

br.com.jhonsapp.bootstrap.test.restTemplate.UserInformation Maven / Gradle / Ivy

package br.com.jhonsapp.bootstrap.test.restTemplate;

public class UserInformation {

	private String client;
	private String clientPassword;
	private String username;
	private String password;
	
	private UserInformation() {
		
		this.client = "resttest";
		this.clientPassword = "@ngul@r0";
		this.username = "[email protected]";
		this.password = "admin";
	}
	
	public String getClient() {
		return client;
	}
	
	public String getClientPassword() {
		return clientPassword;
	}
	
	public String getUsername() {
		return username;
	}
	
	public String getPassword() {
		return password;
	}
	
	public static UserInformation createUserInformation() {
		return new UserInformation();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy