Merge "Reorder modifiers"
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / tenantrest / RollbackTenantError.java
index 0327cef..af76d68 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * OPENECOMP - MSO
+ * ONAP - SO
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
@@ -24,11 +24,9 @@ package org.openecomp.mso.adapters.tenantrest;
 
 import java.io.Serializable;
 import javax.xml.bind.annotation.XmlRootElement;
-import org.jboss.resteasy.annotations.providers.NoJackson;
 import org.openecomp.mso.openstack.exceptions.MsoExceptionCategory;
 
 @XmlRootElement(name = "rollbackTenantError")
-@NoJackson
 public class RollbackTenantError implements Serializable {
        private static final long serialVersionUID = -5313713674529615223L;
        private String message;
@@ -37,10 +35,6 @@ public class RollbackTenantError implements Serializable {
 
        public RollbackTenantError () {}
 
-       public RollbackTenantError (String message) {
-               this.message = message;
-       }
-
        public RollbackTenantError (String message, MsoExceptionCategory category, boolean rolledBack) {
                this.message = message;
                this.category = category;