aboutsummaryrefslogtreecommitdiffstats
path: root/ui-ci-dev/src/main/java/org/openecomp/sdc/uici/tests/datatypes/UserCredentials.java
blob: 0d94529b89df8d893130aea5ac7fb16c01bea6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.openecomp.sdc.uici.tests.datatypes;

import org.openecomp.sdc.be.model.User;

public class UserCredentials extends User {

	private String password;

	public UserCredentials(String userId, String password, String firstname, String lastname) {
		super();
		setUserId(userId);
		this.password = password;
		setFirstName(firstname);
		setLastName(lastname);
	}

	public UserCredentials() {
		super();
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

}