Class TransactionManager
java.lang.Object
ru.bitel.common.dao.AbstarctDaoConstant
ru.bitel.common.dao.AbstractDao<B>
ru.bitel.common.dao.AbstractIdDao<B>
ru.bitel.bgbilling.server.bean.AbstractTransactionManager<Transaction>
ru.bitel.bgbilling.modules.yoomoney.server.bean.TransactionManager
- All Implemented Interfaces:
java.lang.AutoCloseable
public class TransactionManager extends AbstractTransactionManager<Transaction>
-
Nested Class Summary
Nested classes/interfaces inherited from class ru.bitel.common.dao.AbstractDao
ru.bitel.common.dao.AbstractDao.ResultSetIterator -
Field Summary
Fields inherited from class ru.bitel.bgbilling.server.bean.AbstractTransactionManager
logger, moduleSetupFields inherited from class ru.bitel.common.dao.AbstractDao
cacheFilter, cacheJoin, cacheOrderBy, cachePaged, cachePS, cacheWhat, con, getByIdPS, moduleId, orderByPattern, tableNameFields inherited from class ru.bitel.common.dao.AbstarctDaoConstant
ERROR, fields, SQL_CALC_FOUND_ROWS, SQL_DELETE, SQL_DISTINCT, SQL_EQ, SQL_EQCS, SQL_FROM, SQL_GROUP, SQL_IN, SQL_INSERT, SQL_LIMIT, SQL_ON_DUPLICATE_KEY_UPDATE, SQL_ORDER, SQL_SELECT, SQL_SET, SQL_UPDATE, SQL_VALUES, SQL_WHERE -
Constructor Summary
Constructors Constructor Description TransactionManager(java.sql.Connection con, int moduleId) -
Method Summary
Modifier and Type Method Description voidcarryOutPayment(Transaction transaction)Deprecated.voiddeleteTransaction(int id)Удаление платежа-транзакции из лога.voiddoCheckRequest(java.lang.String objectId)java.lang.StringdoPaymentRequest(java.lang.String data, java.lang.String idempotenceKey)voiddoTransaction(java.lang.String yoomoneyId, java.lang.String status, java.math.BigDecimal sum, org.json.JSONObject resultJsonObject)java.lang.StringformatComment(java.lang.String pattern, Transaction transaction)Форматируем камент из шаблона.java.util.List<java.lang.String>getCheckIds(int intervalMinute)intgetFirstYear(int cid)Возвращает год, с которого были платежи для этого договора.protected TransactiongetFromRS(java.sql.ResultSet rs)org.json.JSONObjectgetPaymentRequestJSON(java.math.BigDecimal sum, int contractId, java.lang.String contractTitle)TransactiongetTransactionByPaymentId(int paymentId)TransactiongetTransactionByYoomoneyId(java.lang.String yoomoneyId)TransactiongetTransactionForInvoice(long invoiceId)Возвращает транзакцию по ид_транзакции платёжной системы.voidsearchTransactionList(SearchResult<Transaction> searchResult, int contractId, java.lang.String contractTitle, java.lang.String status)protected voidsetConnectionTimeout(javax.net.ssl.HttpsURLConnection connection)protected voidupdateImpl(Transaction transaction)voidupdateTransaction(Transaction transaction)Methods inherited from class ru.bitel.bgbilling.server.bean.AbstractTransactionManager
doConnection, doConnection, getParameter, psStatus, queryStatus, searchTransaction, searchTransaction, setParameterMethods inherited from class ru.bitel.common.dao.AbstractIdDao
delete, get, getAndDelete, getAndUpdateMethods inherited from class ru.bitel.common.dao.AbstractDao
close, delete, deleteImpl, eq, get, getById, getImpl, getListFromRS, getPeriod, getQueryById, getSQLOrder, getTableName, list, list, listImpl, listImpl, listImplPS, listImplPS, ormFromResultSet, ormUpdateImpl, ormUpdateImpl, ormUpdateImpl, ormUpdateImpl, processException, recycle, setStatementParam, updateMethods inherited from class ru.bitel.common.dao.AbstarctDaoConstant
getSQLOrderMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
TransactionManager
public TransactionManager(java.sql.Connection con, int moduleId)
-
-
Method Details
-
searchTransactionList
public void searchTransactionList(SearchResult<Transaction> searchResult, int contractId, java.lang.String contractTitle, java.lang.String status) throws ru.bitel.bgbilling.common.BGException- Throws:
ru.bitel.bgbilling.common.BGException
-
getCheckIds
public java.util.List<java.lang.String> getCheckIds(int intervalMinute) throws ru.bitel.bgbilling.common.BGException- Throws:
ru.bitel.bgbilling.common.BGException
-
getTransactionForInvoice
public Transaction getTransactionForInvoice(long invoiceId) throws ru.bitel.bgbilling.common.BGExceptionВозвращает транзакцию по ид_транзакции платёжной системы. Используется в экзекутере при проверке есть ли уже платёж с такой транзакцией у нас в БД, ибо может быть повторный запрос.- Parameters:
invoiceId- одноимённый параметр.- Returns:
- объект транзакция.
- Throws:
ru.bitel.bgbilling.common.BGException
-
getTransactionByYoomoneyId
public Transaction getTransactionByYoomoneyId(java.lang.String yoomoneyId) throws ru.bitel.bgbilling.common.BGException- Parameters:
yoomoneyId- - код( например 22e12f66-000f-5000-8000-18db351245c7 )- Returns:
- транзакция
- Throws:
ru.bitel.bgbilling.common.BGException
-
getTransactionByPaymentId
public Transaction getTransactionByPaymentId(int paymentId) throws ru.bitel.bgbilling.common.BGException- Throws:
ru.bitel.bgbilling.common.BGException
-
getFirstYear
public int getFirstYear(int cid) throws ru.bitel.bgbilling.common.BGExceptionВозвращает год, с которого были платежи для этого договора. Если не было ничего, то возвращает текущий.- Parameters:
cid- контракт_ид- Returns:
- четырёхзначное число - год
- Throws:
ru.bitel.bgbilling.common.BGException
-
deleteTransaction
public void deleteTransaction(int id) throws ru.bitel.bgbilling.common.BGExceptionУдаление платежа-транзакции из лога. Не используется, кажется, пока.- Parameters:
id- ид платежа в таблице yoomoney_transactions_$mid.- Throws:
ru.bitel.bgbilling.common.BGException
-
updateTransaction
public void updateTransaction(Transaction transaction) throws ru.bitel.bgbilling.common.BGException- Throws:
ru.bitel.bgbilling.common.BGException
-
carryOutPayment
@Deprecated public void carryOutPayment(Transaction transaction) throws ru.bitel.bgbilling.common.BGExceptionDeprecated.Проведение платежа и занесение его в платежи договора.- Parameters:
transaction- транзакция, проверенная на нужность добавления- Throws:
ru.bitel.bgbilling.common.BGException
-
formatComment
Форматируем камент из шаблона. Комментарий расхода для нашего биллинга.- Parameters:
pattern- шаблонtransaction- платёж-транзакция- Returns:
- строка-камент
-
getFromRS
protected Transaction getFromRS(java.sql.ResultSet rs) throws java.sql.SQLException, ru.bitel.bgbilling.common.BGException- Specified by:
getFromRSin classru.bitel.common.dao.AbstractDao<Transaction>- Throws:
java.sql.SQLExceptionru.bitel.bgbilling.common.BGException
-
updateImpl
protected void updateImpl(Transaction transaction) throws ru.bitel.bgbilling.common.BGException, java.sql.SQLException- Specified by:
updateImplin classru.bitel.common.dao.AbstractDao<Transaction>- Throws:
ru.bitel.bgbilling.common.BGExceptionjava.sql.SQLException
-
setConnectionTimeout
protected void setConnectionTimeout(javax.net.ssl.HttpsURLConnection connection)- Overrides:
setConnectionTimeoutin classAbstractTransactionManager<Transaction>
-
getPaymentRequestJSON
public org.json.JSONObject getPaymentRequestJSON(java.math.BigDecimal sum, int contractId, java.lang.String contractTitle) throws ru.bitel.bgbilling.common.BGException- Throws:
ru.bitel.bgbilling.common.BGException
-
doPaymentRequest
public java.lang.String doPaymentRequest(java.lang.String data, java.lang.String idempotenceKey) -
doCheckRequest
public void doCheckRequest(java.lang.String objectId) -
doTransaction
public void doTransaction(java.lang.String yoomoneyId, java.lang.String status, java.math.BigDecimal sum, org.json.JSONObject resultJsonObject)
-