This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE edge_qrtz_job_details | |
( | |
SCHED_NAME VARCHAR(120) NOT NULL, | |
JOB_NAME VARCHAR(200) NOT NULL, | |
JOB_GROUP VARCHAR(200) NOT NULL, | |
DESCRIPTION VARCHAR(250) NULL, | |
JOB_CLASS_NAME VARCHAR(250) NOT NULL, | |
IS_DURABLE BOOL NOT NULL, | |
IS_NONCONCURRENT BOOL NOT NULL, | |
IS_UPDATE_DATA BOOL NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new ExampleMessageEvent("ExampleMessageEvent " + System.currentTimeMillis(), (e) -> System.out.println("Response " + e.getResponse()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new ExampleMessageEvent("ExampleMessageEvent " + System.currentTimeMillis(), (e) -> System.out.println("Response " + e.getResponse()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
ui = true | |
[alias] | |
ci = commit | |
co = checkout | |
d = diff | |
di = diff | |
br = branch | |
st = status | |
l = log --stat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stg:prod) | |
SRCDIR=/Users/jmaya/Documents/workspace/release/st_george/prod/beluca | |
DESTDIR=stage-ims | |
DESTSERVER=stgweb1 | |
IMSDIR=/usr/local/staging | |
cd $SRCDIR | |
git co st_george | |
git pull origin st_george | |
mvn clean install -DskipTests=true | |
cd ims-web |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void importOpenAccountCommand(String xml) { | |
//load product code. | |
//find strategy - Ex: TransactionFactoryStrategy | |
// execute import command = stratgegy.import(xml) | |
PolicyXmlOrder xmlOrder = new PolicyXmlOrder(xml); | |
OpenAccountCommand command = xmlOrder.command(); | |
this.tradingApplicationServices.openAccount(command); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<MSG> | |
<HEADER> | |
<FILE_NAME>POL_870_20151020_175252176.xml</FILE_NAME> | |
<FILE_TYPE>POLICY</FILE_TYPE> | |
<TENANT>1697</TENANT> | |
</HEADER> | |
<BODY> | |
<POLICY> | |
<PROPOSAL_NO>I100000548</PROPOSAL_NO> | |
<PLAN_NO>100</PLAN_NO> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
testNotSatisfiedNoPremiumReceivedSmallContrib(ims.clienttransaction.workflow.spec.AcctInvestmentPremiumReceivedMaxDifferenceTest) Time elapsed: 0.012 sec <<< ERROR! | |
java.lang.NullPointerException: null | |
at ims.clienttransaction.workflow.spec.AcctInvestmentPremiumReceivedMaxDifference.invalidDelta(AcctInvestmentPremiumReceivedMaxDifference.java:74) | |
at ims.clienttransaction.workflow.spec.AcctInvestmentPremiumReceivedMaxDifference.isSatisfiedBy(AcctInvestmentPremiumReceivedMaxDifference.java:49) | |
at ims.clienttransaction.workflow.spec.AcctInvestmentPremiumReceivedMaxDifferenceTest.testNotSatisfiedNoPremiumReceivedSmallContrib(AcctInvestmentPremiumReceivedMaxDifferenceTest.java:63) | |
testNotSatisfiedNoPremiumReceived(ims.clienttransaction.workflow.spec.AcctInvestmentPremiumReceivedMaxDifferenceTest) Time elapsed: 0 sec <<< ERROR! | |
java.lang.NullPointerException: null | |
at ims.clienttransaction.workflow.spec.AcctInvestmentPremiumReceivedMaxDifference.invalidDelta(AcctInvestmentPremiumReceivedMaxDifference.java:7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(when (window-system) | |
(set-default-font "Fira Code")) | |
(let ((alist '((33 . ".\\(?:\\(?:==\\|!!\\)\\|[!=]\\)") | |
(35 . ".\\(?:###\\|##\\|_(\\|[#(?[_{]\\)") | |
(36 . ".\\(?:>\\)") | |
(37 . ".\\(?:\\(?:%%\\)\\|%\\)") | |
(38 . ".\\(?:\\(?:&&\\)\\|&\\)") | |
(42 . ".\\(?:\\(?:\\*\\*/\\)\\|\\(?:\\*[*/]\\)\\|[*/>]\\)") | |
(43 . ".\\(?:\\(?:\\+\\+\\)\\|[+>]\\)") | |
(45 . ".\\(?:\\(?:-[>-]\\|<<\\|>>\\)\\|[<>}~-]\\)") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def cofx-now | |
"injects current time to context" | |
{:enter (fn [ctx] | |
(assoc-in ctx [:request :now] (java.util.Date.)))}) | |
;; interceptor, in enter update value in `[:request :x]` with `inc` | |
(def inc-x-interceptor | |
{:enter (fn [ctx] | |
(update-in ctx [:request :x] inc))}) |