aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java')
-rw-r--r--src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java b/src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java
index 2068fdf..61a744e 100644
--- a/src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java
+++ b/src/main/java/org/onap/nbi/apis/serviceorder/model/orchestrator/ServiceOrderInfo.java
@@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.onap.nbi.apis.serviceorder.model.orchestrator;
+package org.onap.nbi.apis.serviceorder.model.orchestrator;
import org.onap.nbi.apis.serviceorder.model.consumer.SubscriberInfo;
import java.util.HashMap;
@@ -25,9 +25,9 @@ public class ServiceOrderInfo {
private boolean useServiceOrderCustomer;
private SubscriberInfo subscriberInfo;
private Map<String, ServiceOrderItemInfo> serviceOrderItemInfos = new HashMap<>();
- private boolean allItemsInAdd= true;
+ private boolean allItemsInAdd = true;
private boolean allItemsCompleted;
- private boolean serviceOrderRejected= false;
+ private boolean serviceOrderRejected = false;
private String serviceOrderId;
private String owningEntityId;
@@ -87,7 +87,6 @@ public class ServiceOrderInfo {
this.subscriberInfo = subscriberInfo;
}
-
public boolean isUseServiceOrderCustomer() {
return useServiceOrderCustomer;
}
@@ -96,5 +95,4 @@ public class ServiceOrderInfo {
this.useServiceOrderCustomer = useServiceOrderCustomer;
}
-
}