smartcc-cvs Mailing List for Smart Client Container (Page 2)
Brought to you by:
hengels
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(19) |
Jun
(59) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: <he...@us...> - 2002-06-14 16:23:37
|
Update of /cvsroot/smartcc/smartcc/google/lib In directory usw-pr-cvs1:/tmp/cvs-serv11046/google/lib Added Files: google.jar Log Message: the subproject 'google' demonstrates, how web services can be transparently access like session beans --- NEW FILE: google.jar --- (This appears to be a binary file; contents omitted.) |
|
From: <he...@us...> - 2002-06-14 16:23:36
|
Update of /cvsroot/smartcc/smartcc/google/etc/client
In directory usw-pr-cvs1:/tmp/cvs-serv11046/google/etc/client
Added Files:
GoogleSearch-application-client.xml GoogleSearch-manifest.mf
GoogleSearch-smart-client.xml
Log Message:
the subproject 'google' demonstrates, how web services can be transparently
access like session beans
--- NEW FILE: GoogleSearch-application-client.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE application-client PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Client 1.3//EN" "http://localhost/dtd/application-client_1_3.dtd">
<application-client>
<display-name>Google Search ApplicationClient</display-name>
<env-entry>
<env-entry-name>google.license</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>DM5s8WFZLWsWPPMXzPxyi5/+S099FHQu</env-entry-value>
</env-entry>
<ejb-ref>
<ejb-ref-name>ejb/GoogleSearch</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<home>org.smartcc.google.GoogleSearchHome</home>
<remote>org.smartcc.google.GoogleSearchPort</remote>
</ejb-ref>
</application-client>
--- NEW FILE: GoogleSearch-manifest.mf ---
Manifest-Version: 1.0
Created-By: he...@in...
Main-Class: org.smartcc.google.GoogleSearchClient
Classpath: wings.jar
--- NEW FILE: GoogleSearch-smart-client.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE smart-client PUBLIC "-//Innovidata//Smart Client Container 1.0//EN" "http://www.innovidata.com/dtd/smart-client_1_0.dtd">
<smart-client>
<smart-ref>
<ejb-ref-name>ejb/GoogleSearch</ejb-ref-name>
<transport>org.smartcc.SOAPTransport</transport>
<lookup>ejb/RemoteTest</lookup>
<properties>
#org.smartcc.service.wsdl=http://api.google.com/GoogleSearch.wsdl
org.smartcc.service.wsdl=file:/home/hengels/jdevel/googleapi/GoogleSearch.wsdl
org.smartcc.service.url=http://api.google.com/search/beta2
org.smartcc.service.namespace=urn:GoogleSearch
org.smartcc.service.name=GoogleSearchService
org.smartcc.service.port=GoogleSearchPort
#javax.xml.rpc.ServiceFactory=org.apache.axis.client.ServiceFactory
javax.xml.rpc.ServiceFactory=com.sun.xml.rpc.client.ServiceFactoryImpl
</properties>
</smart-ref>
<!--login-configuration>@vendor@</login-configuration-->
</smart-client>
|
|
From: <he...@us...> - 2002-06-14 16:23:34
|
Update of /cvsroot/smartcc/smartcc/google
In directory usw-pr-cvs1:/tmp/cvs-serv11046/google
Added Files:
build.xml
Log Message:
the subproject 'google' demonstrates, how web services can be transparently
access like session beans
--- NEW FILE: build.xml ---
<project name="Google Search Client" default="main" basedir=".">
<property file="../etc/build.properties"/>
<property name="home" value=".."/>
<property name="dist" value="../dist"/>
<property name="build" value="build"/>
<property name="build.class" value="build/class"/>
<property name="build.etc" value="build/etc"/>
<property name="build.local" value="build/local"/>
<property name="build.remote" value="build/remote"/>
<property name="build.src" value="build/src"/>
<path id="build.classpath">
<pathelement path="${java.class.path}/"/>
<fileset dir="${dist}/client">
<include name="*.jar"/>
</fileset>
</path>
<!-- ==================== Preparations ==================== -->
<target name="prepare">
<tstamp/>
<mkdir dir="${build}"/>
<mkdir dir="${build.class}"/>
<mkdir dir="${build.etc}"/>
<mkdir dir="${build.local}"/>
</target>
<!-- ==================== Compile ==================== -->
<target name="compile" depends="prepare"
description="compile sources">
<javac srcdir="src" destdir="${build.class}"
debug="${build.debug}"
deprecation="${build.deprecation}"
encoding="ISO8859-1">
<classpath refid="build.classpath"/>
</javac>
</target>
<!-- ==================== Test Client ==================== -->
<target name="client" depends="compile">
<copy toFile="${build.etc}/client/application-client.xml"
file="etc/client/GoogleSearch-application-client.xml"/>
<copy toFile="${build.etc}/client/smart-client.xml"
file="etc/client/GoogleSearch-smart-client.xml"
filtering="true"/>
<jar file="${build.local}/GoogleSearchClient.jar"
manifest="etc/client/GoogleSearch-manifest.mf">
<fileset dir="${build.class}">
<include name="org/smartcc/google/*.class"/>
</fileset>
<zipfileset dir="${build.etc}/client" prefix="META-INF"/>
</jar>
</target>
<!-- ==================== Admin ==================== -->
<target name="clean">
<delete dir="${build}"/>
<delete>
<fileset dir=".">
<include name="**/*.class"/>
<include name="**/*.u"/>
<include name="**/*.bak"/>
<include name="**/*~"/>
<include name="**/#*"/>
</fileset>
</delete>
</target>
<target name="build" depends="compile,client"/>
<target name="all" depends="clean,build"/>
<target name="main" depends="build"/>
</project>
|
|
From: <he...@us...> - 2002-06-14 16:18:08
|
Update of /cvsroot/smartcc/smartcc/google/lib In directory usw-pr-cvs1:/tmp/cvs-serv9500/google/lib Log Message: Directory /cvsroot/smartcc/smartcc/google/lib added to the repository |
|
From: <he...@us...> - 2002-06-14 16:17:49
|
Update of /cvsroot/smartcc/smartcc/google/etc/client In directory usw-pr-cvs1:/tmp/cvs-serv9377/google/etc/client Log Message: Directory /cvsroot/smartcc/smartcc/google/etc/client added to the repository |
|
From: <he...@us...> - 2002-06-14 16:17:49
|
Update of /cvsroot/smartcc/smartcc/google/etc In directory usw-pr-cvs1:/tmp/cvs-serv9377/google/etc Log Message: Directory /cvsroot/smartcc/smartcc/google/etc added to the repository |
|
From: <he...@us...> - 2002-06-14 16:17:28
|
Update of /cvsroot/smartcc/smartcc/google/src/org/smartcc/google In directory usw-pr-cvs1:/tmp/cvs-serv9235/google/src/org/smartcc/google Log Message: Directory /cvsroot/smartcc/smartcc/google/src/org/smartcc/google added to the repository |
|
From: <he...@us...> - 2002-06-14 16:17:27
|
Update of /cvsroot/smartcc/smartcc/google/src/org/smartcc In directory usw-pr-cvs1:/tmp/cvs-serv9235/google/src/org/smartcc Log Message: Directory /cvsroot/smartcc/smartcc/google/src/org/smartcc added to the repository |
|
From: <he...@us...> - 2002-06-14 16:17:27
|
Update of /cvsroot/smartcc/smartcc/google/src/org In directory usw-pr-cvs1:/tmp/cvs-serv9235/google/src/org Log Message: Directory /cvsroot/smartcc/smartcc/google/src/org added to the repository |
|
From: <he...@us...> - 2002-06-14 16:17:27
|
Update of /cvsroot/smartcc/smartcc/google/src In directory usw-pr-cvs1:/tmp/cvs-serv9235/google/src Log Message: Directory /cvsroot/smartcc/smartcc/google/src added to the repository |
|
From: <he...@us...> - 2002-06-14 16:15:51
|
Update of /cvsroot/smartcc/smartcc/google In directory usw-pr-cvs1:/tmp/cvs-serv8804/google Log Message: Directory /cvsroot/smartcc/smartcc/google added to the repository |
|
From: <he...@us...> - 2002-06-13 09:44:46
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc
In directory usw-pr-cvs1:/tmp/cvs-serv20179/src/org/smartcc
Modified Files:
SOAPTransport.java
Log Message:
o use stubs
Index: SOAPTransport.java
===================================================================
RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SOAPTransport.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SOAPTransport.java 12 Jun 2002 13:01:28 -0000 1.2
--- SOAPTransport.java 13 Jun 2002 09:44:42 -0000 1.3
***************
*** 21,25 ****
import javax.ejb.*;
import javax.xml.rpc.*;
! import javax.xml.rpc.namespace.*;
--- 21,25 ----
import javax.ejb.*;
import javax.xml.rpc.*;
! import javax.xml.namespace.*;
***************
*** 35,46 ****
private Map stubs = new HashMap();
! protected Remote getStub(SmartRef smartRef)
throws ServiceException, MalformedURLException
{
! Remote remote = (Remote)stubs.get(smartRef);
! if (remote == null) {
String url = smartRef.getProperties().getProperty("org.smartcc.service.url");
String nameSpace = smartRef.getProperties().getProperty("org.smartcc.service.namespace");
String serviceName = smartRef.getProperties().getProperty("org.smartcc.service.name");
if (serviceName == null) {
--- 35,48 ----
private Map stubs = new HashMap();
! protected Stub getStub(SmartRef smartRef)
throws ServiceException, MalformedURLException
{
! Stub stub = (Stub)stubs.get(smartRef);
! if (stub == null) {
! String wsdl = smartRef.getProperties().getProperty("org.smartcc.service.wsdl");
String url = smartRef.getProperties().getProperty("org.smartcc.service.url");
String nameSpace = smartRef.getProperties().getProperty("org.smartcc.service.namespace");
String serviceName = smartRef.getProperties().getProperty("org.smartcc.service.name");
+ String portName = smartRef.getProperties().getProperty("org.smartcc.service.port");
if (serviceName == null) {
***************
*** 49,59 ****
}
ServiceFactory serviceFactory = ServiceFactory.newInstance();
! Service service = serviceFactory.createService(new URL(url),
new QName(nameSpace, serviceName));
! remote = (Remote)service.getPort(smartRef.getRemoteInterfaceClass());
! stubs.put(smartRef, remote);
! // TODO: if it's not an EJBObject, we should wrap it
// TODO: EJBMetaData is the only one, who knows, if session bean is stateful
--- 51,69 ----
}
+ System.out.println("wsdl: " + wsdl);
+ System.out.println("url: " + url);
+ System.out.println("nameSpace: " + nameSpace);
+ System.out.println("serviceName: " + serviceName);
+
ServiceFactory serviceFactory = ServiceFactory.newInstance();
! Service service = serviceFactory.createService(new URL(wsdl),
new QName(nameSpace, serviceName));
! stub = (Stub)service.getPort(new QName(nameSpace, portName),
! smartRef.getRemoteInterfaceClass());
! stub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, url);
! stubs.put(smartRef, stub);
! // TODO: if it's not an EJBObject, we should wrap it or at least have the dynamic
! // proxy of the remote interface implement EJBObject
// TODO: EJBMetaData is the only one, who knows, if session bean is stateful
***************
*** 62,66 ****
// call.setPassword
}
! return remote;
}
--- 72,76 ----
// call.setPassword
}
! return stub;
}
***************
*** 68,72 ****
* Marshall the invocation and forward it to the SOAP service.
* Unmarshall the result and hand it back to the caller. If the result
! * is an Exception, throw it.
*/
public Object invoke(Invocation invocation)
--- 78,82 ----
* Marshall the invocation and forward it to the SOAP service.
* Unmarshall the result and hand it back to the caller. If the result
! * is throwable, throw it.
*/
public Object invoke(Invocation invocation)
***************
*** 81,85 ****
try {
Method method = invocation.getMethod();
! Remote stub = getStub(smartRef);
Object result = method.invoke(stub, invocation.getArguments());
--- 91,95 ----
try {
Method method = invocation.getMethod();
! Stub stub = getStub(smartRef);
Object result = method.invoke(stub, invocation.getArguments());
|
|
From: <he...@us...> - 2002-06-13 09:44:46
|
Update of /cvsroot/smartcc/smartcc/bin In directory usw-pr-cvs1:/tmp/cvs-serv20179/bin Modified Files: run Log Message: o use stubs Index: run =================================================================== RCS file: /cvsroot/smartcc/smartcc/bin/run,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** run 27 May 2002 16:22:23 -0000 1.1.1.1 --- run 13 Jun 2002 09:44:41 -0000 1.2 *************** *** 32,34 **** --- 32,35 ---- export CLASSPATH + echo $JAVA_HOME/bin/java $AUTH_CONF $ARGS org.smartcc.ClientContainer $@ $JAVA_HOME/bin/java $AUTH_CONF $ARGS org.smartcc.ClientContainer $@ |
|
From: <he...@us...> - 2002-06-12 13:01:31
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc
In directory usw-pr-cvs1:/tmp/cvs-serv14102/src/org/smartcc
Modified Files:
ApplicationClientContainer.java SOAPTransport.java
Log Message:
o auth.conf: fixed http configuration
o ApplicationClientContainer: don't fail, if there's no login configuration
o SOAPTransport: use Stubs
Index: ApplicationClientContainer.java
===================================================================
RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/ApplicationClientContainer.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ApplicationClientContainer.java 7 Jun 2002 09:41:29 -0000 1.2
--- ApplicationClientContainer.java 12 Jun 2002 13:01:28 -0000 1.3
***************
*** 44,48 ****
--- 44,54 ----
CallbackHandler callbackHandler = (CallbackHandler)callbackHandlerClass.newInstance();
loginContext = new LoginContext(metaData.getLoginConfiguration(), callbackHandler);
+ }
+ catch (Exception e) {
+ System.err.println(e.getMessage());
+ e.printStackTrace(System.err);
+ }
+ try {
Attributes attributes = metaData.getManifest().getMainAttributes();
String mainClassName = attributes.getValue("Main-Class");
***************
*** 60,90 ****
throws Exception
{
! boolean ok = false;
! while (!ok) {
! try {
! loginContext.login();
! ok = true;
! }
! catch (FailedLoginException e) {
}
! catch (AccountExpiredException e) {
! }
! catch (CredentialExpiredException e) {
! }
! catch (LoginException e) {
! throw e;
! }
! }
! try {
! Method main = mainClass.getMethod("main", new Class[] { String[].class });
! main.invoke(null, new Object[] { new String[0] });
! }
! catch (InvocationTargetException e) {
! if (e.getTargetException() instanceof Exception)
! throw (Exception)e.getTargetException();
! else
! throw e;
! }
}
}
--- 66,98 ----
throws Exception
{
! if (loginContext != null) {
! boolean ok = false;
! while (!ok) {
! try {
! loginContext.login();
! ok = true;
! }
! catch (FailedLoginException e) {
! }
! catch (AccountExpiredException e) {
! }
! catch (CredentialExpiredException e) {
! }
! catch (LoginException e) {
! throw e;
! }
}
! }
! try {
! Method main = mainClass.getMethod("main", new Class[] { String[].class });
! main.invoke(null, new Object[] { new String[0] });
! }
! catch (InvocationTargetException e) {
! if (e.getTargetException() instanceof Exception)
! throw (Exception)e.getTargetException();
! else
! throw e;
! }
}
}
Index: SOAPTransport.java
===================================================================
RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SOAPTransport.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SOAPTransport.java 7 Jun 2002 09:41:40 -0000 1.1
--- SOAPTransport.java 12 Jun 2002 13:01:28 -0000 1.2
***************
*** 27,34 ****
* Forward an Invocation to a SOAP service.
*
- * TODO: ignore create method, if the org.smartcc.service is set to true. this allows us
- * to access plain SOAP services. The create method is specific to the SOAPConnector,
- * wrapping a session bean.
- *
* @author <a href="mailto:he...@in...">Holger Engels</a>.
* @version $Revision$
--- 27,30 ----
***************
*** 37,53 ****
implements Transport
{
! private Map calls = new HashMap();
! protected Call getCall(SmartRef smartRef)
throws ServiceException, MalformedURLException
{
! Call call = (Call)calls.get(smartRef);
! if (call == null) {
! Service service = ServiceFactory.newInstance().createService(null);
! call = service.createCall();
- URL url = new URL(smartRef.getProperties().getProperty("org.smartcc.connector.url"));
- url = new URL(url, smartRef.getLookup());
- call.setTargetEndpointAddress(url.toString());
// TODO: EJBMetaData is the only one, who knows, if session bean is stateful
// call.setMaintainSession(true);
--- 33,60 ----
implements Transport
{
! private Map stubs = new HashMap();
! protected Remote getStub(SmartRef smartRef)
throws ServiceException, MalformedURLException
{
! Remote remote = (Remote)stubs.get(smartRef);
! if (remote == null) {
! String url = smartRef.getProperties().getProperty("org.smartcc.service.url");
! String nameSpace = smartRef.getProperties().getProperty("org.smartcc.service.namespace");
! String serviceName = smartRef.getProperties().getProperty("org.smartcc.service.name");
!
! if (serviceName == null) {
! serviceName = smartRef.getRemoteInterfaceClass().getName();
! serviceName = serviceName.substring(serviceName.lastIndexOf(".") + 1);
! }
!
! ServiceFactory serviceFactory = ServiceFactory.newInstance();
! Service service = serviceFactory.createService(new URL(url),
! new QName(nameSpace, serviceName));
! remote = (Remote)service.getPort(smartRef.getRemoteInterfaceClass());
! stubs.put(smartRef, remote);
!
! // TODO: if it's not an EJBObject, we should wrap it
// TODO: EJBMetaData is the only one, who knows, if session bean is stateful
// call.setMaintainSession(true);
***************
*** 55,59 ****
// call.setPassword
}
! return call;
}
--- 62,66 ----
// call.setPassword
}
! return remote;
}
***************
*** 66,77 ****
throws Throwable
{
- // invokeHome
SmartRef smartRef = (SmartRef)invocation.getValue(Invocation.SMARTREF);
try {
Method method = invocation.getMethod();
! Call call = getCall(smartRef);
! Object result = call.invoke(new QName(method.getDeclaringClass().getName(), method.getName()),
! invocation.getArguments());
if (result instanceof Throwable)
--- 73,86 ----
throws Throwable
{
SmartRef smartRef = (SmartRef)invocation.getValue(Invocation.SMARTREF);
+ // ignore create method for SOAP services
+ if (invocation.getTarget() == null && "create".equals(invocation.getMethod().getName()))
+ return null;
+
try {
Method method = invocation.getMethod();
! Remote stub = getStub(smartRef);
! Object result = method.invoke(stub, invocation.getArguments());
if (result instanceof Throwable)
|
|
From: <he...@us...> - 2002-06-12 13:01:30
|
Update of /cvsroot/smartcc/smartcc/etc
In directory usw-pr-cvs1:/tmp/cvs-serv14102/etc
Modified Files:
auth.conf
Log Message:
o auth.conf: fixed http configuration
o ApplicationClientContainer: don't fail, if there's no login configuration
o SOAPTransport: use Stubs
Index: auth.conf
===================================================================
RCS file: /cvsroot/smartcc/smartcc/etc/auth.conf,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** auth.conf 27 May 2002 16:21:55 -0000 1.1.1.1
--- auth.conf 12 Jun 2002 13:01:27 -0000 1.2
***************
*** 15,19 ****
http {
// establish the SecurityAssociation for HTTP via Basic Authentication
! org.smartcc.loin.LoginModule required
password-stacking="useFirstPass"
;
--- 15,19 ----
http {
// establish the SecurityAssociation for HTTP via Basic Authentication
! org.smartcc.login.HTTPLoginModule required
password-stacking="useFirstPass"
;
|
|
From: <he...@us...> - 2002-06-11 08:56:48
|
Update of /cvsroot/smartcc/smartcc/etc In directory usw-pr-cvs1:/tmp/cvs-serv17183/etc Modified Files: build.properties Log Message: release 1.1 Index: build.properties =================================================================== RCS file: /cvsroot/smartcc/smartcc/etc/build.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build.properties 11 Jun 2002 08:40:36 -0000 1.3 --- build.properties 11 Jun 2002 08:56:45 -0000 1.4 *************** *** 9,12 **** --- 9,13 ---- # optional vendor specific classes: # + # http: nothing vendor specific is built # jboss: build JBossClient for Replay Tool - jbosssx-client.jar required # was4: build Was4LoginModule for RMI access to WebSphere 4.0 - client jars required |
|
From: <he...@us...> - 2002-06-11 08:40:40
|
Update of /cvsroot/smartcc/smartcc/etc In directory usw-pr-cvs1:/tmp/cvs-serv9216/etc Modified Files: build.properties Log Message: o release 1.1 Index: build.properties =================================================================== RCS file: /cvsroot/smartcc/smartcc/etc/build.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.properties 28 May 2002 10:10:28 -0000 1.2 --- build.properties 11 Jun 2002 08:40:36 -0000 1.3 *************** *** 4,8 **** build.debug=on ! version=1.0 ! vendor=jboss --- 4,13 ---- build.debug=on ! version=1.1 ! ## ! # optional vendor specific classes: ! # ! # jboss: build JBossClient for Replay Tool - jbosssx-client.jar required ! # was4: build Was4LoginModule for RMI access to WebSphere 4.0 - client jars required ! vendor=none |
|
From: <he...@us...> - 2002-06-11 06:29:30
|
Update of /cvsroot/smartcc/smartcc/test/etc/client
In directory usw-pr-cvs1:/tmp/cvs-serv18646/test/etc/client
Modified Files:
Test-smart-client.xml
Log Message:
o SOAP's not working, now
Index: Test-smart-client.xml
===================================================================
RCS file: /cvsroot/smartcc/smartcc/test/etc/client/Test-smart-client.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Test-smart-client.xml 7 Jun 2002 09:36:51 -0000 1.3
--- Test-smart-client.xml 11 Jun 2002 06:29:26 -0000 1.4
***************
*** 6,9 ****
--- 6,10 ----
<smart-ref>
<ejb-ref-name>ejb/RemoteTest</ejb-ref-name>
+ <!--
<transport>org.smartcc.SOAPTransport</transport>
<lookup>ejb/RemoteTest</lookup>
***************
*** 11,15 ****
org.smartcc.connector.url=http://localhost:8080/HTTPConnector/
</properties>
! <!--
<transport>org.smartcc.RMITransport</transport>
<lookup>ejb/RemoteTest</lookup>
--- 12,16 ----
org.smartcc.connector.url=http://localhost:8080/HTTPConnector/
</properties>
! -->
<transport>org.smartcc.RMITransport</transport>
<lookup>ejb/RemoteTest</lookup>
***************
*** 18,22 ****
java.naming.provider.url=jnp://localhost:1099
</properties>
- -->
<!--
<transport>org.smartcc.HTTPTransport</transport>
--- 19,22 ----
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc In directory usw-pr-cvs1:/tmp/cvs-serv3001/src/org/smartcc Modified Files: AbstractInterceptor.java ApplicationClientContainer.java ApplicationClientDeployer.java ClientContainer.java Deployer.java DeploymentException.java EJBDeployer.java HTTPConnector.java HTTPTransport.java Interceptor.java Invocation.java LocalSessionContainer.java LocalSessionHome.java LocalSessionObject.java LocalTransport.java MainDeployer.java MetaClassLoader.java RMITransport.java RefHandle.java SmartLocalRef.java SmartLocalRefHome.java SmartLocalRefObject.java SmartRef.java SmartRefHome.java SmartRefObject.java TracingInterceptor.java Transport.java Added Files: SOAPTransport.java Log Message: o added LGPL header and emacs footer --- NEW FILE: SOAPTransport.java --- /* * $Id: SOAPTransport.java,v 1.1 2002/06/07 09:41:40 hengels Exp $ * (c) Copyright 2002 Holger Engels. * * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). * * SmartCC is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * Please see COPYING for the complete licence. */ package org.smartcc; import java.io.*; import java.lang.reflect.*; import java.net.*; import java.rmi.*; import java.util.*; import javax.ejb.*; import javax.xml.rpc.*; import javax.xml.rpc.namespace.*; /** * Forward an Invocation to a SOAP service. * * TODO: ignore create method, if the org.smartcc.service is set to true. this allows us * to access plain SOAP services. The create method is specific to the SOAPConnector, * wrapping a session bean. * * @author <a href="mailto:he...@in...">Holger Engels</a>. * @version $Revision: 1.1 $ */ public class SOAPTransport implements Transport { private Map calls = new HashMap(); protected Call getCall(SmartRef smartRef) throws ServiceException, MalformedURLException { Call call = (Call)calls.get(smartRef); if (call == null) { Service service = ServiceFactory.newInstance().createService(null); call = service.createCall(); URL url = new URL(smartRef.getProperties().getProperty("org.smartcc.connector.url")); url = new URL(url, smartRef.getLookup()); call.setTargetEndpointAddress(url.toString()); // TODO: EJBMetaData is the only one, who knows, if session bean is stateful // call.setMaintainSession(true); // call.setUsername // call.setPassword } return call; } /** * Marshall the invocation and forward it to the SOAP service. * Unmarshall the result and hand it back to the caller. If the result * is an Exception, throw it. */ public Object invoke(Invocation invocation) throws Throwable { // invokeHome SmartRef smartRef = (SmartRef)invocation.getValue(Invocation.SMARTREF); try { Method method = invocation.getMethod(); Call call = getCall(smartRef); Object result = call.invoke(new QName(method.getDeclaringClass().getName(), method.getName()), invocation.getArguments()); if (result instanceof Throwable) throw (Throwable)result; return result; } catch (MalformedURLException e) { throw new EJBException(e); } catch (ServiceException e) { throw new EJBException(e); } } /** * A Transport interceptor is always the last interceptor in the chain. */ public void setNext(Interceptor interceptor) {} /** * A Transport interceptor is always the last interceptor in the chain. */ public Interceptor getNext() { return null; } } /* * Local variables: * c-basic-offset: 4 * indent-tabs-mode: nil * End: */ Index: AbstractInterceptor.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/AbstractInterceptor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AbstractInterceptor.java 29 May 2002 15:12:07 -0000 1.1 --- AbstractInterceptor.java 7 Jun 2002 09:41:28 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 59,60 **** --- 72,79 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: ApplicationClientContainer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/ApplicationClientContainer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ApplicationClientContainer.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- ApplicationClientContainer.java 7 Jun 2002 09:41:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 76,77 **** --- 89,96 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: ApplicationClientDeployer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/ApplicationClientDeployer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ApplicationClientDeployer.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- ApplicationClientDeployer.java 7 Jun 2002 09:41:30 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 343,344 **** --- 356,363 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: ClientContainer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/ClientContainer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ClientContainer.java 29 May 2002 08:12:12 -0000 1.2 --- ClientContainer.java 7 Jun 2002 09:41:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 60,61 **** --- 73,80 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: Deployer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/Deployer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Deployer.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- Deployer.java 7 Jun 2002 09:41:32 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 76,77 **** --- 89,96 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: DeploymentException.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/DeploymentException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** DeploymentException.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- DeploymentException.java 7 Jun 2002 09:41:32 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 23,24 **** --- 36,43 ---- public String toString() { return cause == null ? super.toString() : super.toString()+", Cause:"+cause; } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: EJBDeployer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/EJBDeployer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** EJBDeployer.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- EJBDeployer.java 7 Jun 2002 09:41:32 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 217,218 **** --- 230,237 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: HTTPConnector.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/HTTPConnector.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HTTPConnector.java 7 Jun 2002 09:36:51 -0000 1.2 --- HTTPConnector.java 7 Jun 2002 09:41:33 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 249,250 **** --- 262,269 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: HTTPTransport.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/HTTPTransport.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HTTPTransport.java 7 Jun 2002 09:36:51 -0000 1.2 --- HTTPTransport.java 7 Jun 2002 09:41:33 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 92,93 **** --- 105,112 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: Interceptor.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/Interceptor.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Interceptor.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- Interceptor.java 7 Jun 2002 09:41:33 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 32,33 **** --- 45,52 ---- throws Throwable; } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: Invocation.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/Invocation.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Invocation.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- Invocation.java 7 Jun 2002 09:41:33 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 157,158 **** --- 170,177 ---- } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: LocalSessionContainer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/LocalSessionContainer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LocalSessionContainer.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- LocalSessionContainer.java 7 Jun 2002 09:41:35 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 254,255 **** --- 267,274 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: LocalSessionHome.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/LocalSessionHome.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LocalSessionHome.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- LocalSessionHome.java 7 Jun 2002 09:41:35 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 55,56 **** --- 68,75 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: LocalSessionObject.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/LocalSessionObject.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LocalSessionObject.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- LocalSessionObject.java 7 Jun 2002 09:41:35 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 126,127 **** --- 139,146 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: LocalTransport.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/LocalTransport.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LocalTransport.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- LocalTransport.java 7 Jun 2002 09:41:36 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 75,76 **** --- 88,95 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: MainDeployer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/MainDeployer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** MainDeployer.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- MainDeployer.java 7 Jun 2002 09:41:37 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 104,105 **** --- 117,124 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: MetaClassLoader.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/MetaClassLoader.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** MetaClassLoader.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- MetaClassLoader.java 7 Jun 2002 09:41:37 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 34,35 **** --- 47,54 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: RMITransport.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/RMITransport.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** RMITransport.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- RMITransport.java 7 Jun 2002 09:41:38 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 65,66 **** --- 78,85 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: RefHandle.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/RefHandle.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** RefHandle.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- RefHandle.java 7 Jun 2002 09:41:39 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 34,35 **** --- 47,54 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SmartLocalRef.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SmartLocalRef.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SmartLocalRef.java 29 May 2002 15:12:07 -0000 1.3 --- SmartLocalRef.java 7 Jun 2002 09:41:41 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 145,146 **** --- 158,165 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SmartLocalRefHome.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SmartLocalRefHome.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** SmartLocalRefHome.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- SmartLocalRefHome.java 7 Jun 2002 09:41:41 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 85,86 **** --- 98,105 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SmartLocalRefObject.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SmartLocalRefObject.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SmartLocalRefObject.java 29 May 2002 08:12:12 -0000 1.2 --- SmartLocalRefObject.java 7 Jun 2002 09:41:48 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 116,117 **** --- 129,136 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SmartRef.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SmartRef.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SmartRef.java 29 May 2002 15:12:07 -0000 1.3 --- SmartRef.java 7 Jun 2002 09:41:50 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 160,161 **** --- 173,180 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SmartRefHome.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SmartRefHome.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** SmartRefHome.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- SmartRefHome.java 7 Jun 2002 09:41:50 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 109,110 **** --- 122,129 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SmartRefObject.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/SmartRefObject.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SmartRefObject.java 29 May 2002 08:12:12 -0000 1.2 --- SmartRefObject.java 7 Jun 2002 09:41:51 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 122,123 **** --- 135,142 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: TracingInterceptor.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/TracingInterceptor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TracingInterceptor.java 29 May 2002 15:12:08 -0000 1.1 --- TracingInterceptor.java 7 Jun 2002 09:41:53 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 82,83 **** --- 95,102 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: Transport.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/Transport.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Transport.java 27 May 2002 16:22:01 -0000 1.1.1.1 --- Transport.java 7 Jun 2002 09:41:53 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 11,12 **** --- 24,31 ---- { } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ |
Update of /cvsroot/smartcc/smartcc/test/src/org/smartcc/test In directory usw-pr-cvs1:/tmp/cvs-serv3001/test/src/org/smartcc/test Modified Files: DelegateTestBean.java Helper.java HelperImpl.java JNDITestBean.java LocalTestBean.java Main.java RemoteTestBean.java Log Message: o added LGPL header and emacs footer Index: DelegateTestBean.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/DelegateTestBean.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** DelegateTestBean.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- DelegateTestBean.java 7 Jun 2002 09:42:22 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; *************** *** 119,122 **** --- 132,141 ---- * c-basic-offset: 4 * compile-command: "ant -emacs -find build.xml" + * End: + */ + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil * End: */ Index: Helper.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/Helper.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Helper.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- Helper.java 7 Jun 2002 09:42:28 -0000 1.2 *************** *** 1,3 **** --- 1,22 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; public interface Helper extends java.io.Serializable {} + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: HelperImpl.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/HelperImpl.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** HelperImpl.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- HelperImpl.java 7 Jun 2002 09:42:29 -0000 1.2 *************** *** 1,3 **** --- 1,22 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; public class HelperImpl implements Helper {} + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: JNDITestBean.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/JNDITestBean.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** JNDITestBean.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- JNDITestBean.java 7 Jun 2002 09:42:30 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; *************** *** 66,69 **** --- 79,88 ---- * c-basic-offset: 4 * compile-command: "ant -emacs -find build.xml" + * End: + */ + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil * End: */ Index: LocalTestBean.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/LocalTestBean.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LocalTestBean.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- LocalTestBean.java 7 Jun 2002 09:42:30 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; *************** *** 81,84 **** --- 94,103 ---- * c-basic-offset: 4 * compile-command: "ant -emacs -find build.xml" + * End: + */ + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil * End: */ Index: Main.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/Main.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.java 29 May 2002 08:12:13 -0000 1.2 --- Main.java 7 Jun 2002 09:42:31 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; *************** *** 53,54 **** --- 66,73 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: RemoteTestBean.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/test/RemoteTestBean.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RemoteTestBean.java 29 May 2002 08:12:13 -0000 1.2 --- RemoteTestBean.java 7 Jun 2002 09:42:33 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.test; *************** *** 101,104 **** --- 114,123 ---- * c-basic-offset: 4 * compile-command: "ant -emacs -find build.xml" + * End: + */ + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil * End: */ |
|
From: <he...@us...> - 2002-06-07 09:43:05
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc/login In directory usw-pr-cvs1:/tmp/cvs-serv3001/src/org/smartcc/login Modified Files: HTTPLoginModule.java Was4LoginModule.java Log Message: o added LGPL header and emacs footer Index: HTTPLoginModule.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/login/HTTPLoginModule.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** HTTPLoginModule.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- HTTPLoginModule.java 7 Jun 2002 09:41:58 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.login; *************** *** 174,175 **** --- 187,194 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: Was4LoginModule.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/login/Was4LoginModule.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Was4LoginModule.java 28 May 2002 08:09:26 -0000 1.2 --- Was4LoginModule.java 7 Jun 2002 09:41:58 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.login; *************** *** 151,152 **** --- 164,171 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ |
|
From: <he...@us...> - 2002-06-07 09:43:02
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc/jndi/java In directory usw-pr-cvs1:/tmp/cvs-serv3001/src/org/smartcc/jndi/java Modified Files: JavaContext.java javaURLContextFactory.java Log Message: o added LGPL header and emacs footer Index: JavaContext.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/jndi/java/JavaContext.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** JavaContext.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- JavaContext.java 7 Jun 2002 09:41:54 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.jndi.java; *************** *** 380,381 **** --- 393,400 ---- + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: javaURLContextFactory.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/jndi/java/javaURLContextFactory.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** javaURLContextFactory.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- javaURLContextFactory.java 7 Jun 2002 09:41:55 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.jndi.java; *************** *** 31,32 **** --- 44,51 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ |
|
From: <he...@us...> - 2002-06-07 09:42:57
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc/jndi In directory usw-pr-cvs1:/tmp/cvs-serv3001/src/org/smartcc/jndi Modified Files: ThreadLocalContextFactory.java Log Message: o added LGPL header and emacs footer Index: ThreadLocalContextFactory.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/jndi/ThreadLocalContextFactory.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ThreadLocalContextFactory.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- ThreadLocalContextFactory.java 7 Jun 2002 09:41:54 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.jndi; *************** *** 34,35 **** --- 47,54 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ |
Update of /cvsroot/smartcc/smartcc/test/src/org/smartcc In directory usw-pr-cvs1:/tmp/cvs-serv3001/test/src/org/smartcc Modified Files: NoopInterceptor.java TestApplicationClient.java TestDeployer.java TestLocalSession.java TestSmartLocalRef.java TestSmartRef.java Log Message: o added LGPL header and emacs footer Index: NoopInterceptor.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/NoopInterceptor.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** NoopInterceptor.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- NoopInterceptor.java 7 Jun 2002 09:42:13 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 10,11 **** --- 23,30 ---- throws Throwable { return next.invoke(invocation); } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: TestApplicationClient.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/TestApplicationClient.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TestApplicationClient.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- TestApplicationClient.java 7 Jun 2002 09:42:15 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 91,92 **** --- 104,111 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: TestDeployer.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/TestDeployer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TestDeployer.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- TestDeployer.java 7 Jun 2002 09:42:15 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 69,70 **** --- 82,89 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: TestLocalSession.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/TestLocalSession.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TestLocalSession.java 27 May 2002 16:22:03 -0000 1.1.1.1 --- TestLocalSession.java 7 Jun 2002 09:42:16 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 135,136 **** --- 148,155 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: TestSmartLocalRef.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/TestSmartLocalRef.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestSmartLocalRef.java 29 May 2002 15:12:08 -0000 1.3 --- TestSmartLocalRef.java 7 Jun 2002 09:42:16 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 96,97 **** --- 109,116 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: TestSmartRef.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/test/src/org/smartcc/TestSmartRef.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestSmartRef.java 29 May 2002 15:12:08 -0000 1.3 --- TestSmartRef.java 7 Jun 2002 09:42:16 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc; *************** *** 95,96 **** --- 108,115 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ |
Update of /cvsroot/smartcc/smartcc/src/org/smartcc/metadata In directory usw-pr-cvs1:/tmp/cvs-serv3001/src/org/smartcc/metadata Modified Files: ApplicationClientMetaData.java DescriptorErrorHandler.java EJBJarMetaData.java EJBLocalRefMetaData.java EJBRefMetaData.java EnvEntryMetaData.java InterceptorMetaData.java LocalEntityResolver.java MetaData.java SessionMetaData.java Log Message: o added LGPL header and emacs footer Index: ApplicationClientMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/ApplicationClientMetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ApplicationClientMetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- ApplicationClientMetaData.java 7 Jun 2002 09:42:00 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 161,162 **** --- 174,181 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: DescriptorErrorHandler.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/DescriptorErrorHandler.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** DescriptorErrorHandler.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- DescriptorErrorHandler.java 7 Jun 2002 09:42:02 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 56,57 **** --- 69,76 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: EJBJarMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/EJBJarMetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** EJBJarMetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- EJBJarMetaData.java 7 Jun 2002 09:42:02 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 71,72 **** --- 84,91 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: EJBLocalRefMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/EJBLocalRefMetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** EJBLocalRefMetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- EJBLocalRefMetaData.java 7 Jun 2002 09:42:03 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 87,88 **** --- 100,107 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: EJBRefMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/EJBRefMetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** EJBRefMetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- EJBRefMetaData.java 7 Jun 2002 09:42:03 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 112,113 **** --- 125,132 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: EnvEntryMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/EnvEntryMetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** EnvEntryMetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- EnvEntryMetaData.java 7 Jun 2002 09:42:03 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 40,41 **** --- 53,60 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: InterceptorMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/InterceptorMetaData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InterceptorMetaData.java 29 May 2002 08:12:12 -0000 1.2 --- InterceptorMetaData.java 7 Jun 2002 09:42:03 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 44,45 **** --- 57,64 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: LocalEntityResolver.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/LocalEntityResolver.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LocalEntityResolver.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- LocalEntityResolver.java 7 Jun 2002 09:42:03 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 54,55 **** --- 67,74 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: MetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/MetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** MetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- MetaData.java 7 Jun 2002 09:42:04 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 140,141 **** --- 153,160 ---- public abstract void importCC(Element element) throws DeploymentException; } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: SessionMetaData.java =================================================================== RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/metadata/SessionMetaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** SessionMetaData.java 27 May 2002 16:22:02 -0000 1.1.1.1 --- SessionMetaData.java 7 Jun 2002 09:42:04 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * $Id$ + * (c) Copyright 2002 Holger Engels. + * + * This file is part of the Smart Client Container (http://smartcc.sourceforge.net). + * + * SmartCC is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 + * of the License, or (at your option) any later version. + * + * Please see COPYING for the complete licence. + */ package org.smartcc.metadata; *************** *** 195,196 **** --- 208,215 ---- } } + /* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ |