summaryrefslogtreecommitdiffstats
path: root/common/src/test/java/org/onap/so/client/aai/objects/CustomAAIObjectType.java
blob: b964e905deda982c66ab8d9a620b61b80cca4dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.onap.so.client.aai.objects;

import org.onap.so.client.aai.AAINamespaceConstants;
import org.onap.so.client.aai.AAIObjectType;

public class CustomAAIObjectType extends AAIObjectType {
	
	private static final long serialVersionUID = 1919729212831978098L;
	
	public static final AAIObjectType CUSTOM = new CustomAAIObjectType(AAINamespaceConstants.NETWORK, "my-url", "my-custom-name");
	
	/* Default constructor automatically called by AAIObjectType */
	public CustomAAIObjectType() {
		super();
	}
	protected CustomAAIObjectType(String parent, String uri, String name) {
		super(parent, uri, name);
	}

}