summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/interface-java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* TUSCANY-3992: Apply patch from Greg Dritschler to fix AccessControlException ↵antelder2011-12-202-34/+32
| | | | | | occurs when calling SCAClientFactory.getService git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1221454 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-2681 - merge changes from 1.x to 2.xslaws2011-12-142-9/+69
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1214229 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3890 - separate the request wrapper model from the response wrapper ↵slaws2011-12-131-2/+4
| | | | | | model as per the change in 1.x under TUSCANY-2931. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1213702 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3948: Apply patch from Greg Dritschler to support @Remotable on ↵antelder2011-09-192-4/+32
| | | | | | implementation class, reference field, or reference setter method git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1172577 13f79535-47bb-0310-9956-ffa450edef68
* Change the Operations for async services to use the sync form. So for ↵antelder2011-09-154-19/+132
| | | | | | example a method 'void operation1Async( String input, ResponseDispatch<String> handler )' would have a Operation named operation1 with a single String arg and a return of type String. This along with the other recent async changes gets async operation working with the data binding framework and jaxb git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1171130 13f79535-47bb-0310-9956-ffa450edef68
* Fix spelling of method, changing to 'setNormalizedWSDLInterfaceContract'.scottkurz2011-07-222-5/+5
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1149451 13f79535-47bb-0310-9956-ffa450edef68
* Fix more issues with multiple outputs.scottkurz2011-01-262-22/+19
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1063548 13f79535-47bb-0310-9956-ffa450edef68
* Fix bare+JAXB wsdlgen case. Fix Holder+void_return_type case.scottkurz2011-01-253-84/+110
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1063125 13f79535-47bb-0310-9956-ffa450edef68
* Fixes to the JavaInterface code dealing with the type of the response ↵edwardsmj2011-01-212-4/+8
| | | | | | parameter for an async service method - needed fixup after changes caused by the new Holders code. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1061775 13f79535-47bb-0310-9956-ffa450edef68
* Fix IndexOutOfBoundsException from TUSCANY-3819 fix.scottkurz2011-01-201-5/+5
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1061531 13f79535-47bb-0310-9956-ffa450edef68
* Fix for TUSCANY-3819 (still need to cleanup bare case, wsdlgen).scottkurz2011-01-201-31/+27
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1061329 13f79535-47bb-0310-9956-ffa450edef68
* Update JavaInterfaceIntrospectorImpl to add checks for @Remotable ↵edwardsmj2011-01-122-4/+675
| | | | | | annotations in illegal locations on methods and on method parameters, as described in TUSCANY-3817 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1058146 13f79535-47bb-0310-9956-ffa450edef68
* Bump up copyright year in the NOTICE filesantelder2011-01-101-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1057117 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3664 Add support for multiple operation output typesbdaniel2010-11-142-10/+68
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1035089 13f79535-47bb-0310-9956-ffa450edef68
* Remove duplicate testslaws2010-10-151-9/+7
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1023039 13f79535-47bb-0310-9956-ffa450edef68
* Remove Tuscany version numbers from base dependencies added by mistakeslaws2010-10-041-2/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1004312 13f79535-47bb-0310-9956-ffa450edef68
* add missing dependenciesslaws2010-09-271-1/+4
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1001665 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3664 Migrate 1.x Holder support to 2.x and add support for non-void ↵bdaniel2010-09-171-5/+40
| | | | | | methods and multiple Holders git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998232 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3653 - Read JAXWS annotations in Java interfaces ↵slaws2010-08-183-1/+84
| | | | | | (JAXWSJavaIntefaceProcessor) and, in the JavaIntefaceProcessor, post process these to reconfigure the Java interface based on what is found. The case where WSDL is referenced is tricky and still has holes. The WSDL is read and is attached to the Java interface as a normalized interface and is used during interface matching. Binding implementations that care about WSDL should really check the normalized interface rather than the service interface itself. This is still a TODO. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@986740 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3653 - Add slots to store information read from JAXWS annotations. ↵slaws2010-08-182-1/+81
| | | | | | This information will be read by a util (that will eventually be reused by the implementation.java code) and processed by the processor. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@986735 13f79535-47bb-0310-9956-ffa450edef68
* Handle inheritance of intents and policy sets on java interfacesbdaniel2010-08-172-12/+36
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@986433 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3641 - When a JAXWS binding is encountered make sure that the ↵slaws2010-08-121-1/+1
| | | | | | associated SCA service has a WS binding. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@984702 13f79535-47bb-0310-9956-ffa450edef68
* JCA 11010 Add SOAP intent to the interface if any parameter on any method in ↵bdaniel2010-08-091-2/+22
| | | | | | the interface is annotated with @WebParam with header=true git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@983802 13f79535-47bb-0310-9956-ffa450edef68
* JCA 11011 Add SOAP intent to the interface if any method in the interface is ↵bdaniel2010-08-091-1/+16
| | | | | | annotated with @WebResult git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@983744 13f79535-47bb-0310-9956-ffa450edef68
* Report an error if a class annotated with @WebServiceClient is used as an ↵bdaniel2010-08-062-0/+7
| | | | | | SCA interface (JCA 11014) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@982867 13f79535-47bb-0310-9956-ffa450edef68
* Treat java interfaces annotated with @SOAPBinding as having the SOAP intent ↵bdaniel2010-08-061-0/+9
| | | | | | (JCA_11012) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@982861 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3616 - Add code to check that that interface contracts a reference ↵slaws2010-07-132-1/+15
| | | | | | and reference binding and at service and service binding match. Motivated by BWS_2007. TO do this properly we have to test that the interfaces are described using the same IDL and if not convert to WSDL1.1 are required by the SCA specifications. There are a lot of changes here as doing this upset quite a few tests. Further work is required to look at the details of our WSDL generation process which looks a little suspect around wrapper namespaces. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@963624 13f79535-47bb-0310-9956-ffa450edef68
* Add in processing of declared Asynchronous Faults via @AsyncFaults ↵edwardsmj2010-06-291-0/+14
| | | | | | annotation, in support of TUSCANY-3609 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@959077 13f79535-47bb-0310-9956-ffa450edef68
* Introspection of SCA Async Server form on Java interface and Equivalence ↵edwardsmj2010-06-257-1/+285
| | | | | | mapping of Async Server interface to Synchronous Java interface, as described in TUSCANY-3609 and TUSCANY-3610 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@957877 13f79535-47bb-0310-9956-ffa450edef68
* Add missing headerslaws2010-05-271-1/+19
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@948758 13f79535-47bb-0310-9956-ffa450edef68
* Updating Copyright Year in NOTICE fileslresende2010-05-121-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@943700 13f79535-47bb-0310-9956-ffa450edef68
* add conformance statements to error message after running otestskelvingoodson2010-05-072-4/+4
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@942115 13f79535-47bb-0310-9956-ffa450edef68
* explicitly call out those extensions which contain Extension Developers' SPI ↵kelvingoodson2010-04-291-0/+12
| | | | | | and those extensions which have a special relationship git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@939277 13f79535-47bb-0310-9956-ffa450edef68
* forall classes 'c' in packages interfacedef.java* that are imported by ↵kelvingoodson2010-04-296-0/+6
| | | | | | tuscany module code, tag c as extension spi git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@939246 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3290 - Fixing JavaInterfaceProcessor to write back the remotable ↵lresende2010-02-121-0/+4
| | | | | | attribute for the java interface git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@909649 13f79535-47bb-0310-9956-ffa450edef68
* Remove the test scope from the assembly-xml dependency to prevent ↵slaws2010-01-201-1/+0
| | | | | | compilation errors. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@901314 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3426 read/write/resolve requires and policySets attributes that ↵slaws2010-01-203-4/+19
| | | | | | appear in interface.java and interface.wsdl elements. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@901251 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3388 - Updating to the latests OASIS schemalresende2009-12-115-5/+5
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@889531 13f79535-47bb-0310-9956-ffa450edef68
* Moving 2.x trunklresende2009-11-2031-0/+3107
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882795 13f79535-47bb-0310-9956-ffa450edef68