- package cactusServer.entities;
-
- import java.net.URI;
-
- import cactusServer.entities.Account;
-
- public class Session {
- private Account account;
- private URI accountURI;
-
- public Session(Account account, URI accountURI) {
- this.account = account;
- this.accountURI = accountURI;
- }
-
- public Account getAccount() {
- return account;
- }
-
- public void setAccount(Account account) {
- this.account = account;
- }
-
- public URI getAccountURI() {
- return accountURI;
- }
-
- public void setAccountURI(URI accountURI) {
- this.accountURI = accountURI;
- }
- }