/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kie.server.services.jbpm.ui.form; @org.kie.api.definition.type.Label(value = "Purchase Order Line") public class PurchaseOrderLine implements java.io.Serializable { static final long serialVersionUID = 1L; @org.kie.api.definition.type.Label(value = "Total") private java.lang.Double total; @org.kie.api.definition.type.Label(value = "Amount") private java.lang.Double amount; @org.kie.api.definition.type.Label(value = "Description") private java.lang.String description; @org.kie.api.definition.type.Label(value = "Unit price") private java.lang.Double unitPrice; public PurchaseOrderLine() { } public java.lang.Double getTotal() { return this.total; } public void setTotal( java.lang.Double total ) { this.total = total; } public java.lang.Double getAmount() { return this.amount; } public void setAmount( java.lang.Double amount ) { this.amount = amount; } public java.lang.String getDescription() { return this.description; } public void setDescription( java.lang.String description ) { this.description = description; } public java.lang.Double getUnitPrice() { return this.unitPrice; } public void setUnitPrice( java.lang.Double unitPrice ) { this.unitPrice = unitPrice; } }