23 | Hibernate POJOs for bpel. 24 |
25 | 26 |27 | 28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/shutdown.sql: -------------------------------------------------------------------------------- 1 | connect 'jdbc:derby:;shutdown=true'; 2 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/common.sql: -------------------------------------------------------------------------------- 1 | create table ODE_SCHEMA_VERSION (VERSION integer); 2 | insert into ODE_SCHEMA_VERSION values (7); 3 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/license-header.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Licensed to the Apache Software Foundation (ASF) under one 3 | -- or more contributor license agreements. See the NOTICE file 4 | -- distributed with this work for additional information 5 | -- regarding copyright ownership. The ASF licenses this file 6 | -- to you under the Apache License, Version 2.0 (the 7 | -- "License"); you may not use this file except in compliance 8 | -- with the License. You may obtain a copy of the License at 9 | -- 10 | -- http://www.apache.org/licenses/LICENSE-2.0 11 | -- 12 | -- Unless required by applicable law or agreed to in writing, 13 | -- software distributed under the License is distributed on an 14 | -- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | -- KIND, either express or implied. See the License for the 16 | -- specific language governing permissions and limitations 17 | -- under the License. 18 | -- 19 | 20 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/simplesched-derby.sql: -------------------------------------------------------------------------------- 1 | -- Apache ODE - SimpleScheduler Database Schema 2 | -- 3 | -- Apache Derby scripts by Maciej Szefler. 4 | -- 5 | -- 6 | 7 | CREATE TABLE ode_job ( 8 | jobid CHAR(64) NOT NULL DEFAULT '', 9 | ts BIGINT NOT NULL DEFAULT 0, 10 | nodeid char(64), 11 | scheduled int NOT NULL DEFAULT 0, 12 | transacted int NOT NULL DEFAULT 0, 13 | 14 | instanceId BIGINT, 15 | mexId varchar(255), 16 | processId varchar(255), 17 | type varchar(255), 18 | channel varchar(255), 19 | correlatorId varchar(255), 20 | correlationKeySet varchar(255), 21 | retryCount int, 22 | inMem int, 23 | detailsExt blob(4096), 24 | 25 | PRIMARY KEY(jobid)); 26 | 27 | CREATE INDEX IDX_ODE_JOB_TS ON ode_job(ts); 28 | CREATE INDEX IDX_ODE_JOB_NODEID ON ode_job(nodeid); 29 | 30 | 31 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/simplesched-h2.sql: -------------------------------------------------------------------------------- 1 | -- Apache ODE - SimpleScheduler Database Schema 2 | -- 3 | -- MySQL scripts by Maciej Szefler. 4 | -- 5 | -- 6 | 7 | 8 | CREATE TABLE ODE_JOB ( 9 | jobid CHAR(64) NOT NULL DEFAULT '', 10 | ts BIGINT NOT NULL DEFAULT 0, 11 | nodeid char(64) NULL, 12 | scheduled int NOT NULL DEFAULT 0, 13 | transacted int NOT NULL DEFAULT 0, 14 | 15 | instanceId BIGINT, 16 | mexId varchar(255), 17 | processId varchar(255), 18 | type varchar(255), 19 | channel varchar(255), 20 | correlatorId varchar(255), 21 | correlationKeySet varchar(255), 22 | retryCount int, 23 | inMem int, 24 | detailsExt blob(4096), 25 | 26 | PRIMARY KEY(jobid) 27 | ); 28 | 29 | create index IDX_ODE_JOB_TS on ODE_JOB(ts); 30 | create index IDX_ODE_JOB_NODEID on ODE_JOB(nodeid); 31 | 32 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/simplesched-mysql.sql: -------------------------------------------------------------------------------- 1 | -- Apache ODE - SimpleScheduler Database Schema 2 | -- 3 | -- MySQL scripts by Maciej Szefler. 4 | -- 5 | -- 6 | 7 | 8 | CREATE TABLE ODE_JOB ( 9 | jobid CHAR(64) NOT NULL DEFAULT '', 10 | ts BIGINT NOT NULL DEFAULT 0, 11 | nodeid char(64) NULL, 12 | scheduled int NOT NULL DEFAULT 0, 13 | transacted int NOT NULL DEFAULT 0, 14 | 15 | instanceId BIGINT, 16 | mexId varchar(255), 17 | processId varchar(255), 18 | type varchar(255), 19 | channel varchar(255), 20 | correlatorId varchar(255), 21 | correlationKeySet varchar(255), 22 | retryCount int, 23 | inMem int, 24 | detailsExt blob(4096), 25 | 26 | PRIMARY KEY(jobid), 27 | INDEX IDX_ODE_JOB_TS(ts), 28 | INDEX IDX_ODE_JOB_NODEID(nodeid) 29 | ); 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/simplesched-oracle.sql: -------------------------------------------------------------------------------- 1 | -- Apache ODE - SimpleScheduler Database Schema 2 | -- 3 | -- Apache Derby scripts by Maciej Szefler. 4 | -- 5 | -- 6 | 7 | 8 | 9 | CREATE TABLE ode_job ( 10 | jobid VARCHAR(64) NOT NULL, 11 | ts number(37) NOT NULL, 12 | nodeid varchar(64), 13 | scheduled int NOT NULL, 14 | transacted int NOT NULL, 15 | 16 | instanceId number(37), 17 | mexId varchar(255), 18 | processId varchar(255), 19 | type varchar(255), 20 | channel varchar(255), 21 | correlatorId varchar(255), 22 | correlationKeySet varchar(255), 23 | retryCount int, 24 | inMem int, 25 | detailsExt blob, 26 | 27 | PRIMARY KEY(jobid)); 28 | 29 | CREATE INDEX IDX_ODE_JOB_TS ON ode_job(ts); 30 | CREATE INDEX IDX_ODE_JOB_NODEID ON ode_job(nodeid); 31 | 32 | 33 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/simplesched-postgres.sql: -------------------------------------------------------------------------------- 1 | -- Apache ODE - SimpleScheduler Database Schema 2 | -- 3 | -- Apache Derby scripts by Maciej Szefler. 4 | -- 5 | -- 6 | 7 | CREATE TABLE ode_job ( 8 | jobid CHAR(64) NOT NULL DEFAULT '', 9 | ts BIGINT NOT NULL DEFAULT 0, 10 | nodeid char(64), 11 | scheduled int NOT NULL DEFAULT 0, 12 | transacted int NOT NULL DEFAULT 0, 13 | 14 | instanceId BIGINT, 15 | mexId varchar(255), 16 | processId varchar(255), 17 | type varchar(255), 18 | channel varchar(255), 19 | correlatorId varchar(255), 20 | correlationKeySet varchar(255), 21 | retryCount int, 22 | inMem int, 23 | detailsExt oid, 24 | 25 | PRIMARY KEY(jobid)); 26 | 27 | CREATE INDEX IDX_ODE_JOB_TS ON ode_job(ts); 28 | CREATE INDEX IDX_ODE_JOB_NODEID ON ode_job(nodeid); 29 | 30 | -------------------------------------------------------------------------------- /dao-jpa-ojpa-derby/src/main/scripts/simplesched-sqlserver.sql: -------------------------------------------------------------------------------- 1 | -- Apache ODE - SimpleScheduler Database Schema 2 | -- 3 | -- Apache Derby scripts by Maciej Szefler. 4 | -- 5 | -- 6 | 7 | CREATE TABLE ode_job ( 8 | jobid CHAR(64) NOT NULL DEFAULT '', 9 | ts BIGINT NOT NULL DEFAULT 0, 10 | nodeid char(64), 11 | scheduled int NOT NULL DEFAULT 0, 12 | transacted int NOT NULL DEFAULT 0, 13 | 14 | instanceId BIGINT, 15 | mexId varchar(255), 16 | processId varchar(255), 17 | type varchar(255), 18 | channel varchar(255), 19 | correlatorId varchar(255), 20 | correlationKeySet varchar(255), 21 | retryCount int, 22 | inMem int, 23 | detailsExt blob(4096), 24 | 25 | PRIMARY KEY(jobid)); 26 | 27 | CREATE INDEX IDX_ODE_JOB_TS ON ode_job(ts); 28 | CREATE INDEX IDX_ODE_JOB_NODEID ON ode_job(nodeid); 29 | 30 | 31 | -------------------------------------------------------------------------------- /distro/license/jencks-LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2005 LogicBlaze, Inc. http://www.logicblaze.com 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /distro/src/examples-jbi/ant/PingPong/ping-http/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 |Miscellanous utility classes.
23 | 24 | -------------------------------------------------------------------------------- /utils/src/main/java/org/apache/ode/utils/stl/BinaryFunction.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | package org.apache.ode.utils.stl; 20 | 21 | public interface BinaryFunction { 22 | Object apply(Object x, Object y); 23 | } 24 | -------------------------------------------------------------------------------- /utils/src/main/java/org/apache/ode/utils/stl/UnaryFunction.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | package org.apache.ode.utils.stl; 20 | 21 | public interface UnaryFunction