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

com.capitalone.dashboard.client.RestUserInfo Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.capitalone.dashboard.client;

public class RestUserInfo {
    private String userId;
    private String passCode;

    public RestUserInfo(String userId, String passCode) {
        this.userId = userId;
        this.passCode = passCode;
    }

    public String getFormattedString() {
        return userId.trim() + ":" + passCode.trim();
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy