01: package org.obe.client.api.repository;
02:
03: import java.io.Serializable;
04:
05: /**
06: * @author Adrian Price
07: */
08: public final class Part implements Serializable {
09: private static final long serialVersionUID = -5982728605059069710L;
10: public String name;
11: public String typeNamespaceURI;
12: public String typeName;
13:
14: public Part() {
15: }
16:
17: public Part(String name, String typeNamespaceURI, String typeName) {
18: this.name = name;
19: this.typeNamespaceURI = typeNamespaceURI;
20: this.typeName = typeName;
21: }
22: }
|