summaryrefslogtreecommitdiff
path: root/microservices/01-oauth2-server/src/main/java/com/example/oauth2server/config/UserProperties.java
blob: c81a52aa2548e7e19c8f9de865008f0bfe554c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.example.oauth2server.config;

public class UserProperties {
    private String username;
    private String password;

    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
}