PGBuildUserAccount.java 467 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.cq.mobile.phonegap.impl.build;

public class PGBuildUserAccount {
    private String userId = null;
    private String password = null;

    public PGBuildUserAccount(String userId, String password) {
        this.userId = userId;
        this.password = password;
    }

    public String getUserId() {
        return this.userId;
    }

    public String getPassword() {
        return this.password;
    }
}