Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / restServiceException / Fault.java
index 0f7cc48..dd0df4f 100644 (file)
@@ -95,17 +95,17 @@ import javax.xml.bind.annotation.XmlType;
 public class Fault {
 
     @XmlElement(required = true)
-    protected Fault.RequestError requestError;
+    protected RequestError requestError;
 
     /**
      * Gets the value of the requestError property.
      * 
      * @return
      *     possible object is
-     *     {@link Fault.RequestError }
+     *     {@link RequestError }
      *     
      */
-    public Fault.RequestError getRequestError() {
+    public RequestError getRequestError() {
         return requestError;
     }
 
@@ -114,10 +114,10 @@ public class Fault {
      * 
      * @param value
      *     allowed object is
-     *     {@link Fault.RequestError }
+     *     {@link RequestError }
      *     
      */
-    public void setRequestError(Fault.RequestError value) {
+    public void setRequestError(RequestError value) {
         this.requestError = value;
     }
 
@@ -170,17 +170,17 @@ public class Fault {
     public static class RequestError {
 
         @XmlElement(required = true)
-        protected Fault.RequestError.ServiceException serviceException;
+        protected ServiceException serviceException;
 
         /**
          * Gets the value of the serviceException property.
          * 
          * @return
          *     possible object is
-         *     {@link Fault.RequestError.ServiceException }
+         *     {@link ServiceException }
          *     
          */
-        public Fault.RequestError.ServiceException getServiceException() {
+        public ServiceException getServiceException() {
             return serviceException;
         }
 
@@ -189,10 +189,10 @@ public class Fault {
          * 
          * @param value
          *     allowed object is
-         *     {@link Fault.RequestError.ServiceException }
+         *     {@link ServiceException }
          *     
          */
-        public void setServiceException(Fault.RequestError.ServiceException value) {
+        public void setServiceException(ServiceException value) {
             this.serviceException = value;
         }
 
@@ -241,7 +241,7 @@ public class Fault {
             @XmlElement(required = true)
             protected String text;
             @XmlElement(required = true)
-            protected Fault.RequestError.ServiceException.Variables variables;
+            protected Variables variables;
 
             /**
              * Gets the value of the messageId property.
@@ -296,10 +296,10 @@ public class Fault {
              * 
              * @return
              *     possible object is
-             *     {@link Fault.RequestError.ServiceException.Variables }
+             *     {@link Variables }
              *     
              */
-            public Fault.RequestError.ServiceException.Variables getVariables() {
+            public Variables getVariables() {
                 return variables;
             }
 
@@ -308,10 +308,10 @@ public class Fault {
              * 
              * @param value
              *     allowed object is
-             *     {@link Fault.RequestError.ServiceException.Variables }
+             *     {@link Variables }
              *     
              */
-            public void setVariables(Fault.RequestError.ServiceException.Variables value) {
+            public void setVariables(Variables value) {
                 this.variables = value;
             }