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
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
[10/19/15, 3:47:56 PM] Juan E. Maya: create role slftestdb login password '^1mnuj7s'; | |
[10/19/15, 3:48:11 PM] Juan E. Maya: create schema ims authorization slftestdb; | |
create schema pgcontrib; | |
grant all on schema ims to slftestdb; | |
grant all on schema pgcontrib to slftestdb; | |
alter user slftestdb set search_path = ims, pgcontrib; | |
SET search_path TO ims, pgcontrib,public; | |
revoke create on schema public from public; | |
commit; |
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
#!/bin/sh | |
set -x | |
BASE_DIR=$(pwd) | |
cd $BASE_DIR/common/beluca | |
git fetch origin common | |
git co common | |
git pull origin common | |
cd common |
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 fetch origin | |
git co feature/st_george | |
mvn clean install -DskipTests=true | |
;; |
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
insert into trd_tenant (id, code) values (108835, 'NAV'); | |
insert into trd_product (productid, active, code, name, tenantid) | |
values (nextval('seq_trd_product'), true, 'slf_implicit_pricing', 'SLF: Implicit Pricing', 108835); | |
insert into trd_configuration (configurationid, fund_type, sequence_type, valid_from, creation_date) | |
values (nextval('seq_trd_configuration'), 40, 'SURRENDER_FIRST', now(), now()); | |
insert into trd_product_configuration (productid, configurationid) | |
select (select productid from trd_product where code = 'slf_implicit_pricing') as productid, |
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
insert into trd_tenant (id, code) values (108835, 'NAV'); | |
insert into trd_product (productid, active, code, name, tenantid) | |
values (nextval('seq_trd_product'), true, 'slf_implicit_pricing', 'SLF: Implicit Pricing', 108835); | |
insert into trd_configuration (configurationid, fund_type, sequence_type, valid_from, creation_date) | |
values (nextval('seq_trd_configuration'), 40, 'SURRENDER_FIRST', now(), now()); | |
insert into trd_product_configuration (productid, configurationid) | |
select (select productid from trd_product where code = 'slf_implicit_pricing') as productid, |
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
stguatdb=> \d trd_product_configuration | |
Table "ims.trd_product_configuration" | |
Column | Type | Modifiers | |
-----------------+--------+----------- | |
productid | bigint | not null | |
configurationid | bigint | not null | |
Indexes: | |
"trd_product_configuration_pkey" PRIMARY KEY, btree (productid, configurationid) | |
Foreign-key constraints: | |
"trd_product_configuration_configurationid_fk" FOREIGN KEY (configurationid) REFERENCES trd_configuration(configurationid) |
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
<plugin> | |
<groupId>org.apache.tomcat.maven</groupId> | |
<artifactId>tomcat7-maven-plugin</artifactId> | |
<version>2.0</version> | |
<configuration> | |
<path>/ims</path> | |
<systemProperties> | |
<tapestry.production-mode>false</tapestry.production-mode> | |
<tapestry.execution-mode>Development</tapestry.execution-mode> | |
</systemProperties> |
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
<t:Loop t:source="permissions" t:value="permission"> | |
<tr t:type="Zone" t:id="rowZone" id="prop:currentRowZoneId"> | |
<td>${permission.id}</td> | |
<td>${permission.name}</td> | |
<td> | |
<t:if test="authorized "> | |
<img src="${context:img/green.png}" style="height: 16px;"/> | |
</t:if> | |
<t:if test="!authorized "> |