(i *IdentityCache)
| 27 | } |
| 28 | |
| 29 | func NewIdentityExcerpt(i *IdentityCache) *IdentityExcerpt { |
| 30 | return &IdentityExcerpt{ |
| 31 | id: i.Id(), |
| 32 | Name: i.Name(), |
| 33 | Login: i.Login(), |
| 34 | ImmutableMetadata: i.ImmutableMetadata(), |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | func (i *IdentityExcerpt) setId(id entity.Id) { |
| 39 | i.id = id |
nothing calls this directly
no test coverage detected