/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program, if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.model; import java.math.BigDecimal; import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Invoice * @author iDempiere (generated) * @version Release 12 */ public interface I_C_Invoice { /** TableName=C_Invoice */ public static final String Table_Name = "C_Invoice"; /** AD_Table_ID=318 */ public static final int Table_ID = 318; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); /** AccessLevel = 1 - Org */ BigDecimal accessLevel = BigDecimal.valueOf(1); /** Load Meta Data */ /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; /** Get Tenant. * Tenant for this installation. */ public int getAD_Client_ID(); /** Column name AD_OrgTrx_ID */ public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID"; /** Set Trx Organization. * Performing or initiating organization */ public void setAD_OrgTrx_ID (int AD_OrgTrx_ID); /** Get Trx Organization. * Performing or initiating organization */ public int getAD_OrgTrx_ID(); /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; /** Set Organization. * Organizational entity within tenant */ public void setAD_Org_ID (int AD_Org_ID); /** Get Organization. * Organizational entity within tenant */ public int getAD_Org_ID(); /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; /** Set User/Contact. * User within the system - Internal or Business Partner Contact */ public void setAD_User_ID (int AD_User_ID); /** Get User/Contact. * User within the system - Internal or Business Partner Contact */ public int getAD_User_ID(); public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; /** Set Activity. * Business Activity */ public void setC_Activity_ID (int C_Activity_ID); /** Get Activity. * Business Activity */ public int getC_Activity_ID(); public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; /** Set Business Partner. * Identifies a Business Partner */ public void setC_BPartner_ID (int C_BPartner_ID); /** Get Business Partner. * Identifies a Business Partner */ public int getC_BPartner_ID(); public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; /** Set Partner Location. * Identifies the (ship to) address for this Business Partner */ public void setC_BPartner_Location_ID (int C_BPartner_Location_ID); /** Get Partner Location. * Identifies the (ship to) address for this Business Partner */ public int getC_BPartner_Location_ID(); public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; /** Set Campaign. * Marketing Campaign */ public void setC_Campaign_ID (int C_Campaign_ID); /** Get Campaign. * Marketing Campaign */ public int getC_Campaign_ID(); public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_CashLine_ID */ public static final String COLUMNNAME_C_CashLine_ID = "C_CashLine_ID"; /** Set Cash Journal Line. * Cash Journal Line */ public void setC_CashLine_ID (int C_CashLine_ID); /** Get Cash Journal Line. * Cash Journal Line */ public int getC_CashLine_ID(); public org.compiere.model.I_C_CashLine getC_CashLine() throws RuntimeException; /** Column name C_CashPlanLine_ID */ public static final String COLUMNNAME_C_CashPlanLine_ID = "C_CashPlanLine_ID"; /** Set Cash Plan Line */ public void setC_CashPlanLine_ID (int C_CashPlanLine_ID); /** Get Cash Plan Line */ public int getC_CashPlanLine_ID(); public org.compiere.model.I_C_CashPlanLine getC_CashPlanLine() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; /** Set Charge. * Additional document charges */ public void setC_Charge_ID (int C_Charge_ID); /** Get Charge. * Additional document charges */ public int getC_Charge_ID(); public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_ConversionType_ID */ public static final String COLUMNNAME_C_ConversionType_ID = "C_ConversionType_ID"; /** Set Currency Type. * Currency Conversion Rate Type */ public void setC_ConversionType_ID (int C_ConversionType_ID); /** Get Currency Type. * Currency Conversion Rate Type */ public int getC_ConversionType_ID(); public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; /** Set Currency. * The Currency for this record */ public void setC_Currency_ID (int C_Currency_ID); /** Get Currency. * The Currency for this record */ public int getC_Currency_ID(); public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocTypeTarget_ID */ public static final String COLUMNNAME_C_DocTypeTarget_ID = "C_DocTypeTarget_ID"; /** Set Target Document Type. * Target document type for conversing documents */ public void setC_DocTypeTarget_ID (int C_DocTypeTarget_ID); /** Get Target Document Type. * Target document type for conversing documents */ public int getC_DocTypeTarget_ID(); public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; /** Set Document Type. * Document type or rules */ public void setC_DocType_ID (int C_DocType_ID); /** Get Document Type. * Document type or rules */ public int getC_DocType_ID(); public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_DunningLevel_ID */ public static final String COLUMNNAME_C_DunningLevel_ID = "C_DunningLevel_ID"; /** Set Dunning Level */ public void setC_DunningLevel_ID (int C_DunningLevel_ID); /** Get Dunning Level */ public int getC_DunningLevel_ID(); public org.compiere.model.I_C_DunningLevel getC_DunningLevel() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; /** Set Invoice. * Invoice Identifier */ public void setC_Invoice_ID (int C_Invoice_ID); /** Get Invoice. * Invoice Identifier */ public int getC_Invoice_ID(); /** Column name C_Invoice_UU */ public static final String COLUMNNAME_C_Invoice_UU = "C_Invoice_UU"; /** Set C_Invoice_UU */ public void setC_Invoice_UU (String C_Invoice_UU); /** Get C_Invoice_UU */ public String getC_Invoice_UU(); /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; /** Set Order. * Order */ public void setC_Order_ID (int C_Order_ID); /** Get Order. * Order */ public int getC_Order_ID(); public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_PaymentTerm_ID */ public static final String COLUMNNAME_C_PaymentTerm_ID = "C_PaymentTerm_ID"; /** Set Payment Term. * The terms of Payment (timing, discount) */ public void setC_PaymentTerm_ID (int C_PaymentTerm_ID); /** Get Payment Term. * The terms of Payment (timing, discount) */ public int getC_PaymentTerm_ID(); public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; /** Set Payment. * Payment identifier */ public void setC_Payment_ID (int C_Payment_ID); /** Get Payment. * Payment identifier */ public int getC_Payment_ID(); public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; /** Set Project. * Financial Project */ public void setC_Project_ID (int C_Project_ID); /** Get Project. * Financial Project */ public int getC_Project_ID(); public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; /** Set Charge amount. * Charge Amount */ public void setChargeAmt (BigDecimal ChargeAmt); /** Get Charge amount. * Charge Amount */ public BigDecimal getChargeAmt(); /** Column name CopyFrom */ public static final String COLUMNNAME_CopyFrom = "CopyFrom"; /** Set Copy From. * Copy From Record */ public void setCopyFrom (String CopyFrom); /** Get Copy From. * Copy From Record */ public String getCopyFrom(); /** Column name CreateFrom */ public static final String COLUMNNAME_CreateFrom = "CreateFrom"; /** Set Create lines from. * Process which will generate a new document lines based on an existing document */ public void setCreateFrom (String CreateFrom); /** Get Create lines from. * Process which will generate a new document lines based on an existing document */ public String getCreateFrom(); /** Column name CreateLinesFrom */ public static final String COLUMNNAME_CreateLinesFrom = "CreateLinesFrom"; /** Set Create lines from. * Process which will generate a new document lines based on an existing document */ public void setCreateLinesFrom (String CreateLinesFrom); /** Get Create lines from. * Process which will generate a new document lines based on an existing document */ public String getCreateLinesFrom(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; /** Get Created. * Date this record was created */ public Timestamp getCreated(); /** Column name CreatedBy */ public static final String COLUMNNAME_CreatedBy = "CreatedBy"; /** Get Created By. * User who created this records */ public int getCreatedBy(); /** Column name CurrencyRate */ public static final String COLUMNNAME_CurrencyRate = "CurrencyRate"; /** Set Rate. * Currency Conversion Rate */ public void setCurrencyRate (BigDecimal CurrencyRate); /** Get Rate. * Currency Conversion Rate */ public BigDecimal getCurrencyRate(); /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; /** Set Account Date. * Accounting Date */ public void setDateAcct (Timestamp DateAcct); /** Get Account Date. * Accounting Date */ public Timestamp getDateAcct(); /** Column name DateInvoiced */ public static final String COLUMNNAME_DateInvoiced = "DateInvoiced"; /** Set Date Invoiced. * Date printed on Invoice */ public void setDateInvoiced (Timestamp DateInvoiced); /** Get Date Invoiced. * Date printed on Invoice */ public Timestamp getDateInvoiced(); /** Column name DateOrdered */ public static final String COLUMNNAME_DateOrdered = "DateOrdered"; /** Set Date Ordered. * Date of Order */ public void setDateOrdered (Timestamp DateOrdered); /** Get Date Ordered. * Date of Order */ public Timestamp getDateOrdered(); /** Column name DatePrinted */ public static final String COLUMNNAME_DatePrinted = "DatePrinted"; /** Set Date Printed. * Date the document was printed. */ public void setDatePrinted (Timestamp DatePrinted); /** Get Date Printed. * Date the document was printed. */ public Timestamp getDatePrinted(); /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; /** Set Description. * Optional short description of the record */ public void setDescription (String Description); /** Get Description. * Optional short description of the record */ public String getDescription(); /** Column name DocAction */ public static final String COLUMNNAME_DocAction = "DocAction"; /** Set Document Action. * The targeted status of the document */ public void setDocAction (String DocAction); /** Get Document Action. * The targeted status of the document */ public String getDocAction(); /** Column name DocBaseType */ public static final String COLUMNNAME_DocBaseType = "DocBaseType"; /** Set Document Base Type. * Logical type of document */ public void setDocBaseType (String DocBaseType); /** Get Document Base Type. * Logical type of document */ public String getDocBaseType(); /** Column name DocStatus */ public static final String COLUMNNAME_DocStatus = "DocStatus"; /** Set Document Status. * The current status of the document */ public void setDocStatus (String DocStatus); /** Get Document Status. * The current status of the document */ public String getDocStatus(); /** Column name DocumentNo */ public static final String COLUMNNAME_DocumentNo = "DocumentNo"; /** Set Document No. * Document sequence number of the document */ public void setDocumentNo (String DocumentNo); /** Get Document No. * Document sequence number of the document */ public String getDocumentNo(); /** Column name DunningGrace */ public static final String COLUMNNAME_DunningGrace = "DunningGrace"; /** Set Dunning Grace Date */ public void setDunningGrace (Timestamp DunningGrace); /** Get Dunning Grace Date */ public Timestamp getDunningGrace(); /** Column name GenerateTo */ public static final String COLUMNNAME_GenerateTo = "GenerateTo"; /** Set Generate To. * Generate To */ public void setGenerateTo (String GenerateTo); /** Get Generate To. * Generate To */ public String getGenerateTo(); /** Column name GrandTotal */ public static final String COLUMNNAME_GrandTotal = "GrandTotal"; /** Set Grand Total. * Total amount of document */ public void setGrandTotal (BigDecimal GrandTotal); /** Get Grand Total. * Total amount of document */ public BigDecimal getGrandTotal(); /** Column name InvoiceCollectionType */ public static final String COLUMNNAME_InvoiceCollectionType = "InvoiceCollectionType"; /** Set Collection Status. * Invoice Collection Status */ public void setInvoiceCollectionType (String InvoiceCollectionType); /** Get Collection Status. * Invoice Collection Status */ public String getInvoiceCollectionType(); /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; /** Set Active. * The record is active in the system */ public void setIsActive (boolean IsActive); /** Get Active. * The record is active in the system */ public boolean isActive(); /** Column name IsApproved */ public static final String COLUMNNAME_IsApproved = "IsApproved"; /** Set Approved. * Indicates if this document requires approval */ public void setIsApproved (boolean IsApproved); /** Get Approved. * Indicates if this document requires approval */ public boolean isApproved(); /** Column name IsDiscountPrinted */ public static final String COLUMNNAME_IsDiscountPrinted = "IsDiscountPrinted"; /** Set Discount Printed. * Print Discount on Invoice and Order */ public void setIsDiscountPrinted (boolean IsDiscountPrinted); /** Get Discount Printed. * Print Discount on Invoice and Order */ public boolean isDiscountPrinted(); /** Column name IsFixedAssetInvoice */ public static final String COLUMNNAME_IsFixedAssetInvoice = "IsFixedAssetInvoice"; /** Set Is Fixed Asset Invoice */ public void setIsFixedAssetInvoice (boolean IsFixedAssetInvoice); /** Get Is Fixed Asset Invoice */ public boolean isFixedAssetInvoice(); /** Column name IsInDispute */ public static final String COLUMNNAME_IsInDispute = "IsInDispute"; /** Set In Dispute. * Document is in dispute */ public void setIsInDispute (boolean IsInDispute); /** Get In Dispute. * Document is in dispute */ public boolean isInDispute(); /** Column name IsOverrideCurrencyRate */ public static final String COLUMNNAME_IsOverrideCurrencyRate = "IsOverrideCurrencyRate"; /** Set Override Currency Conversion Rate. * Override Currency Conversion Rate */ public void setIsOverrideCurrencyRate (boolean IsOverrideCurrencyRate); /** Get Override Currency Conversion Rate. * Override Currency Conversion Rate */ public boolean isOverrideCurrencyRate(); /** Column name IsPaid */ public static final String COLUMNNAME_IsPaid = "IsPaid"; /** Set Paid. * The document is fully paid */ public void setIsPaid (boolean IsPaid); /** Get Paid. * The document is fully paid */ public boolean isPaid(); /** Column name IsPayScheduleValid */ public static final String COLUMNNAME_IsPayScheduleValid = "IsPayScheduleValid"; /** Set Pay Schedule valid. * Is the Payment Schedule is valid */ public void setIsPayScheduleValid (boolean IsPayScheduleValid); /** Get Pay Schedule valid. * Is the Payment Schedule is valid */ public boolean isPayScheduleValid(); /** Column name IsPrinted */ public static final String COLUMNNAME_IsPrinted = "IsPrinted"; /** Set Printed. * Indicates if this document / line is printed */ public void setIsPrinted (boolean IsPrinted); /** Get Printed. * Indicates if this document / line is printed */ public boolean isPrinted(); /** Column name IsSOTrx */ public static final String COLUMNNAME_IsSOTrx = "IsSOTrx"; /** Set Sales Transaction. * This is a Sales Transaction */ public void setIsSOTrx (boolean IsSOTrx); /** Get Sales Transaction. * This is a Sales Transaction */ public boolean isSOTrx(); /** Column name IsSelfService */ public static final String COLUMNNAME_IsSelfService = "IsSelfService"; /** Set Self-Service. * This is a Self-Service entry or this entry can be changed via Self-Service */ public void setIsSelfService (boolean IsSelfService); /** Get Self-Service. * This is a Self-Service entry or this entry can be changed via Self-Service */ public boolean isSelfService(); /** Column name IsTaxIncluded */ public static final String COLUMNNAME_IsTaxIncluded = "IsTaxIncluded"; /** Set Price includes Tax. * Tax is included in the price */ public void setIsTaxIncluded (boolean IsTaxIncluded); /** Get Price includes Tax. * Tax is included in the price */ public boolean isTaxIncluded(); /** Column name IsTransferred */ public static final String COLUMNNAME_IsTransferred = "IsTransferred"; /** Set Transferred. * Transferred to General Ledger (i.e. accounted) */ public void setIsTransferred (boolean IsTransferred); /** Get Transferred. * Transferred to General Ledger (i.e. accounted) */ public boolean isTransferred(); /** Column name M_PriceList_ID */ public static final String COLUMNNAME_M_PriceList_ID = "M_PriceList_ID"; /** Set Price List. * Unique identifier of a Price List */ public void setM_PriceList_ID (int M_PriceList_ID); /** Get Price List. * Unique identifier of a Price List */ public int getM_PriceList_ID(); public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_RMA_ID */ public static final String COLUMNNAME_M_RMA_ID = "M_RMA_ID"; /** Set RMA. * Return Material Authorization */ public void setM_RMA_ID (int M_RMA_ID); /** Get RMA. * Return Material Authorization */ public int getM_RMA_ID(); public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException; /** Column name POReference */ public static final String COLUMNNAME_POReference = "POReference"; /** Set Order Reference. * Transaction Reference Number (Sales Order, Purchase Order) of your Business Partner */ public void setPOReference (String POReference); /** Get Order Reference. * Transaction Reference Number (Sales Order, Purchase Order) of your Business Partner */ public String getPOReference(); /** Column name PaymentRule */ public static final String COLUMNNAME_PaymentRule = "PaymentRule"; /** Set Payment Rule. * How you pay the invoice */ public void setPaymentRule (String PaymentRule); /** Get Payment Rule. * How you pay the invoice */ public String getPaymentRule(); /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; /** Set Posted. * Posting status */ public void setPosted (boolean Posted); /** Get Posted. * Posting status */ public boolean isPosted(); /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; /** Set Processed. * The document has been processed */ public void setProcessed (boolean Processed); /** Get Processed. * The document has been processed */ public boolean isProcessed(); /** Column name ProcessedOn */ public static final String COLUMNNAME_ProcessedOn = "ProcessedOn"; /** Set Processed On. * The date+time (expressed in decimal format) when the document has been processed */ public void setProcessedOn (BigDecimal ProcessedOn); /** Get Processed On. * The date+time (expressed in decimal format) when the document has been processed */ public BigDecimal getProcessedOn(); /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; /** Set Process Now */ public void setProcessing (boolean Processing); /** Get Process Now */ public boolean isProcessing(); /** Column name Ref_Invoice_ID */ public static final String COLUMNNAME_Ref_Invoice_ID = "Ref_Invoice_ID"; /** Set Referenced Invoice */ public void setRef_Invoice_ID (int Ref_Invoice_ID); /** Get Referenced Invoice */ public int getRef_Invoice_ID(); /** Column name RelatedInvoice_ID */ public static final String COLUMNNAME_RelatedInvoice_ID = "RelatedInvoice_ID"; /** Set Related Invoice */ public void setRelatedInvoice_ID (int RelatedInvoice_ID); /** Get Related Invoice */ public int getRelatedInvoice_ID(); public org.compiere.model.I_C_Invoice getRelatedInvoice() throws RuntimeException; /** Column name Reversal_ID */ public static final String COLUMNNAME_Reversal_ID = "Reversal_ID"; /** Set Reversal ID. * ID of document reversal */ public void setReversal_ID (int Reversal_ID); /** Get Reversal ID. * ID of document reversal */ public int getReversal_ID(); public org.compiere.model.I_C_Invoice getReversal() throws RuntimeException; /** Column name SalesRep_ID */ public static final String COLUMNNAME_SalesRep_ID = "SalesRep_ID"; /** Set Sales Representative. * Sales Representative or Company Agent */ public void setSalesRep_ID (int SalesRep_ID); /** Get Sales Representative. * Sales Representative or Company Agent */ public int getSalesRep_ID(); public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name SendEMail */ public static final String COLUMNNAME_SendEMail = "SendEMail"; /** Set Send EMail. * Enable sending Document EMail */ public void setSendEMail (boolean SendEMail); /** Get Send EMail. * Enable sending Document EMail */ public boolean isSendEMail(); /** Column name TotalLines */ public static final String COLUMNNAME_TotalLines = "TotalLines"; /** Set Total Lines. * Total of all document lines */ public void setTotalLines (BigDecimal TotalLines); /** Get Total Lines. * Total of all document lines */ public BigDecimal getTotalLines(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; /** Get Updated. * Date this record was updated */ public Timestamp getUpdated(); /** Column name UpdatedBy */ public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; /** Get Updated By. * User who updated this records */ public int getUpdatedBy(); /** Column name User1_ID */ public static final String COLUMNNAME_User1_ID = "User1_ID"; /** Set User Element List 1. * User defined list element #1 */ public void setUser1_ID (int User1_ID); /** Get User Element List 1. * User defined list element #1 */ public int getUser1_ID(); public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; /** Set User Element List 2. * User defined list element #2 */ public void setUser2_ID (int User2_ID); /** Get User Element List 2. * User defined list element #2 */ public int getUser2_ID(); public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; }