You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
889 B
43 lines
889 B
package main.java.ru.egspt.moodle; |
|
public class Access { |
|
private String link; |
|
private String login; |
|
private String password; |
|
/** |
|
* @param link the link to set |
|
*/ |
|
public void setLink(String link) { |
|
this.link = link; |
|
} |
|
/** |
|
* @return the link |
|
*/ |
|
public String getLink() { |
|
return link; |
|
} |
|
/** |
|
* @param login the login to set |
|
*/ |
|
public void setLogin(String login) { |
|
this.login = login; |
|
} |
|
/** |
|
* @return the login |
|
*/ |
|
public String getLogin() { |
|
return login; |
|
} |
|
/** |
|
* @param password the password to set |
|
*/ |
|
public void setPassword(String password) { |
|
this.password = password; |
|
} |
|
/** |
|
* @return the password |
|
*/ |
|
public String getPassword() { |
|
return password; |
|
} |
|
|
|
}
|
|
|