Merge Casablanca
[so.git] / common / src / test / java / org / onap / so / client / aai / objects / CustomAAIObjectType.java
1 package org.onap.so.client.aai.objects;
2
3 import org.onap.so.client.aai.AAINamespaceConstants;
4 import org.onap.so.client.aai.AAIObjectType;
5
6 public class CustomAAIObjectType extends AAIObjectType {
7         
8         private static final long serialVersionUID = 1919729212831978098L;
9         
10         public static final AAIObjectType CUSTOM = new CustomAAIObjectType(AAINamespaceConstants.NETWORK, "my-url", "my-custom-name");
11         
12         /* Default constructor automatically called by AAIObjectType */
13         public CustomAAIObjectType() {
14                 super();
15         }
16         protected CustomAAIObjectType(String parent, String uri, String name) {
17                 super(parent, uri, name);
18         }
19
20 }