summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix OSGi access violations and package importsrfeng2008-12-0920-98/+189
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724568 13f79535-47bb-0310-9956-ffa450edef68
* Adding factory for common java artifacts model objectslresende2008-12-095-15/+182
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724566 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-2729 - Updates to readme to remove statement that sample is not ↵lresende2008-12-091-4/+3
| | | | | | working in linux git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724563 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-2729 - Updates to readme to remove statement that sample is not ↵lresende2008-12-091-4/+3
| | | | | | working in linux git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724562 13f79535-47bb-0310-9956-ffa450edef68
* Start tidying the builders. No function change. First remove anything from ↵slaws2008-12-0811-2605/+2643
| | | | | | the base class that is not actually shared to give a clearer view of the function of each builder. Shared function now lives in a new single base class. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724435 13f79535-47bb-0310-9956-ffa450edef68
* Updated all the test composite files to include a target namespace - the ↵edwardsmj2008-12-0822-3/+25
| | | | | | target namespace is required by the specification and leaving it out causes error messages to be generated when the tests are run. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724392 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for TUSCANY-2728ramkumar2008-12-081-0/+65
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724389 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for TUSCANY-2728ramkumar2008-12-081-0/+65
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724388 13f79535-47bb-0310-9956-ffa450edef68
* Merge missing license header fix from 1.x to 1.4antelder2008-12-081-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724369 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headerantelder2008-12-081-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724365 13f79535-47bb-0310-9956-ffa450edef68
* The BPEL payment process now successfully calls the payment serviceslaws2008-12-0812-47/+86
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724355 13f79535-47bb-0310-9956-ffa450edef68
* Merge license header fixes to 1.4 from 1.x r724110 to 724120antelder2008-12-0837-2175/+2823
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724350 13f79535-47bb-0310-9956-ffa450edef68
* Updated code that converts a String to a long to use Long.parseLong(String) ↵mcombellack2008-12-081-2/+2
| | | | | | rather than new Long(String) so that a new Long Object instance is not created and discarded git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724347 13f79535-47bb-0310-9956-ffa450edef68
* Changed code to use Integer.valueOf() rather than new Integer() as valueOf() ↵mcombellack2008-12-082-2/+2
| | | | | | is the recommended way of creating an Integer object from an int (see JavaDoc for Integer) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724342 13f79535-47bb-0310-9956-ffa450edef68
* Converted existing comments in the source code to the correct JavaDoc format ↵mcombellack2008-12-081-6/+19
| | | | | | since they were just inline comments git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724339 13f79535-47bb-0310-9956-ffa450edef68
* Made the constants private static final and use the correct variable naming ↵mcombellack2008-12-081-9/+9
| | | | | | scheme (i.e. capitals and '_') git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724336 13f79535-47bb-0310-9956-ffa450edef68
* Removed unnessary return statelements from methods where the last statement ↵mcombellack2008-12-081-4/+0
| | | | | | in the method was return git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724334 13f79535-47bb-0310-9956-ffa450edef68
* Removed unnessary return statelements from methods where the last statement ↵mcombellack2008-12-0811-33/+0
| | | | | | in the method was return git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724331 13f79535-47bb-0310-9956-ffa450edef68
* Made private utility classes finalmcombellack2008-12-081-2/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724328 13f79535-47bb-0310-9956-ffa450edef68
* Corrected the names of twostatic final variables so they use the correct ↵mcombellack2008-12-081-8/+8
| | | | | | naming scheme - i.e. capitals with '_' git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724327 13f79535-47bb-0310-9956-ffa450edef68
* Added { and } characters for code blocks where they did not have them so the ↵mcombellack2008-12-084-6/+12
| | | | | | code is consistent with the rest of the Tuscany codebase git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724322 13f79535-47bb-0310-9956-ffa450edef68
* Removed redundant modifiers (such as public, final, etc) as these are not ↵mcombellack2008-12-0830-105/+105
| | | | | | needed for interfaces git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724318 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-2727, remove www-services from 1.4antelder2008-12-0839-21546/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724305 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-2681: Apply fix from Rodolfo Dias to fix When a Component class ↵antelder2008-12-082-9/+69
| | | | | | implements an interfaces that extends other interface and use generics occur the error git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724302 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for TUSCANY-2721ramkumar2008-12-0832-1711/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724270 13f79535-47bb-0310-9956-ffa450edef68
* Adding tuscany birthday logo as static image to be used by the confluence ↵lresende2008-12-071-0/+0
| | | | | | auto export plugin git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724166 13f79535-47bb-0310-9956-ffa450edef68
* Reduced the sleep times in the test since they did not need to be so long. ↵mcombellack2008-12-072-66/+98
| | | | | | This reduced the unit test time (on my machine) from 52 seconds to 12 seconds. The whole of the itests project (on my machine) now builds in 1 minute and 17 seconds rather than over 2 minutes git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724165 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for module nameramkumar2008-12-071-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724156 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for junk modulesramkumar2008-12-0758-5433/+168
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724155 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for junk folderramkumar2008-12-071-1/+7
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724153 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-071-127/+145
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724120 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-071-124/+142
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724119 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-072-0/+35
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724118 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-074-0/+72
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724117 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-071-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724116 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-071-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724115 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-0718-1296/+1620
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724114 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-076-628/+736
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724113 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headersantelder2008-12-072-0/+36
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724112 13f79535-47bb-0310-9956-ffa450edef68
* Exclude ORB trace files from distributionantelder2008-12-071-0/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724111 13f79535-47bb-0310-9956-ffa450edef68
* Merge missing license headers fix from 1.x branch to 1.4antelder2008-12-073-0/+54
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724110 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headerantelder2008-12-071-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724109 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headerantelder2008-12-071-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724108 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headerantelder2008-12-071-0/+18
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724107 13f79535-47bb-0310-9956-ffa450edef68
* Merge r723501 changes for TUSCANY-2698 into the 1.4 branchnash2008-12-056-7/+189
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723908 13f79535-47bb-0310-9956-ffa450edef68
* Add itest to the main buildrfeng2008-12-051-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723906 13f79535-47bb-0310-9956-ffa450edef68
* Further cleanup for ComponentContext, CompositeContextrfeng2008-12-0514-397/+553
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723904 13f79535-47bb-0310-9956-ffa450edef68
* Merging changes to delay initialization of Contribution repository to avoid ↵lresende2008-12-053-133/+203
| | | | | | creation of target directory. No refactoring or removal of obsolete code was done to maintain backward compatibility. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723868 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-2715 - Merging changes from 1.x trunk to 1.4 releaselresende2008-12-058-406/+45
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723833 13f79535-47bb-0310-9956-ffa450edef68
* Changes to make policy-security work in 2.0.edwardsmj2008-12-055-5/+6
| | | | | | SecurityUtil.java moved to org.apache.tuscany.policy.security to avoid a clash with a package name used in the policy module git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723800 13f79535-47bb-0310-9956-ffa450edef68