Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / audit / AAIObjectAudit.java
1 package org.onap.so.adapters.audit;
2
3 import java.io.Serializable;
4 import java.net.URI;
5 import org.onap.so.client.aai.AAIObjectType;
6 import org.apache.commons.lang3.builder.ToStringBuilder;
7
8 public class AAIObjectAudit implements Serializable {
9
10     /**
11      * 
12      */
13     private static final long serialVersionUID = -4560928512855386021L;
14     private boolean doesObjectExist = false;
15     private Object aaiObject;
16     private URI resourceURI;
17     private String aaiObjectType;
18
19     @Override
20     public String toString() {
21         return new ToStringBuilder(this).append("doesObjectExist", doesObjectExist).append("aaiObject", aaiObject)
22                 .append("resourceURI", resourceURI).append("aaiObjectType", aaiObjectType).toString();
23     }
24
25     public String getAaiObjectType() {
26         return aaiObjectType;
27     }
28
29     public void setAaiObjectType(String aaiObjectType) {
30         this.aaiObjectType = aaiObjectType;
31     }
32
33     public boolean isDoesObjectExist() {
34         return doesObjectExist;
35     }
36
37     public void setDoesObjectExist(boolean doesObjectExist) {
38         this.doesObjectExist = doesObjectExist;
39     }
40
41     public Object getAaiObject() {
42         return aaiObject;
43     }
44
45     public void setAaiObject(Object aaiObject) {
46         this.aaiObject = aaiObject;
47     }
48
49     public URI getResourceURI() {
50         return resourceURI;
51     }
52
53     public void setResourceURI(URI resourceURI) {
54         this.resourceURI = resourceURI;
55     }
56 }