| | package org.ntlab.acanthus_server.entities; |
---|
| | |
---|
| | import com.fasterxml.jackson.annotation.JsonProperty; |
---|
| | |
---|
| | //----------------------------------------------------------------- |
---|
| | // アカウントのUIDのみを返すJson |
---|
| | public class AccountUidJson { |
---|
| | @JsonProperty("uid") |
---|
| | private Integer uid; |
---|
| | |
---|
| | //----------------------------------------------------------------- |
---|
| | //----------------------------------------------------------------- |
---|
| | public AccountUidJson(Account account){ |
---|
| | this.uid = account.getUid(); |
---|
| | } |
---|
| | //----------------------------------------------------------------- |
---|
| | } |
---|
| | |
---|
| | |