Package org.wso2.msf4j.example.model
Class Invoice
- java.lang.Object
-
- org.wso2.msf4j.example.model.Invoice
-
public class Invoice extends java.lang.ObjectRepresents an Invoice item
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetAmount()java.lang.StringgetCustomerId()java.util.DategetDate()java.lang.StringgetId()voidsetAmount(double amount)voidsetCustomerId(java.lang.String customerId)voidsetDate(java.util.Date date)voidsetId(java.lang.String id)java.lang.StringtoString()
-
-
-
Method Detail
-
getId
public java.lang.String getId()
-
setId
public void setId(java.lang.String id)
-
getCustomerId
public java.lang.String getCustomerId()
-
setCustomerId
public void setCustomerId(java.lang.String customerId)
-
getAmount
public double getAmount()
-
setAmount
public void setAmount(double amount)
-
getDate
public java.util.Date getDate()
-
setDate
public void setDate(java.util.Date date)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-