| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| EntityModificationInterception |
|
| 1.0;1 |
| 1 | package org.trails.security; |
|
| 2 | ||
| 3 | public class EntityModificationInterception extends TrailsSecurityException { |
|
| 4 | private Object entity; |
|
| 5 | public Object getEntity() { |
|
| 6 | 0 | return entity; |
| 7 | } |
|
| 8 | ||
| 9 | public EntityModificationInterception(Object entity, String string) { |
|
| 10 | 6 | super(string); |
| 11 | 6 | this.entity = entity; |
| 12 | 6 | } |
| 13 | } |