01: package org.osbl.inventory.model;
02:
03: import org.osbl.persistence.model.Concrete;
04: import org.osbl.identity.model.Identity;
05: import org.conform.Property;
06:
07: import java.util.List;
08:
09: public class Employee extends Concrete<Identity> {
10: Location location;
11:
12: public Employee() {
13: }
14:
15: public Employee(Identity general) {
16: super (general);
17: }
18:
19: public Location getLocation() {
20: return location;
21: }
22:
23: public void setLocation(Location location) {
24: this.location = location;
25: }
26: }
|