Changeset 2281
- Timestamp:
- Mar 13, 2014, 8:56:39 PM (10 years ago)
- Location:
- extensions/net.sf.basedb.ftp/trunk
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.ftp/trunk
- Property svn:ignore
-
old new 3 3 build 4 4 build.properties 5 .project6 5 .settings
-
- Property svn:ignore
-
extensions/net.sf.basedb.ftp/trunk/.classpath
r1412 r2281 6 6 <classpathentry kind="lib" path="META-INF/lib/spring-beans-2.5.5.jar"/> 7 7 <classpathentry kind="lib" path="META-INF/lib/spring-core-2.5.5.jar"/> 8 <classpathentry kind="lib" path="lib/compile/base-core-3.0.0.jar"/>9 <classpathentry kind="lib" path="lib/compile/base-webclient-3.0.0.jar"/>10 8 <classpathentry kind="lib" path="META-INF/lib/ftplet-api-1.0.6.jar"/> 11 9 <classpathentry kind="lib" path="META-INF/lib/ftpserver-core-1.0.6.jar"/> 10 <classpathentry kind="lib" path="lib/compile/base-core-3.3.0.jar"/> 11 <classpathentry kind="lib" path="lib/compile/base-webclient-3.3.0.jar"/> 12 12 <classpathentry kind="output" path="bin"/> 13 13 </classpath> -
extensions/net.sf.basedb.ftp/trunk/META-INF/extensions.xml
r1441 r2281 31 31 </description> 32 32 <version>1.3-dev</version> 33 <min-base-version>3. 0.0</min-base-version>33 <min-base-version>3.3.0</min-base-version> 34 34 <copyright>BASE development team</copyright> 35 35 <email>basedb-users@lists.sourceforge.net</email> -
extensions/net.sf.basedb.ftp/trunk/build.xml
r1441 r2281 42 42 description="Full name of .tar.gz file for download." /> 43 43 <property name="javac.arg" value="-Xlint:unchecked" /> 44 <property name="javac.source" value="1. 6" />45 <property name="javac.target" value="1. 6" />44 <property name="javac.source" value="1.7" /> 45 <property name="javac.target" value="1.7" /> 46 46 <property name="javac.encoding" value="UTF-8" /> 47 47 <property name="depend.base-version" 48 value="3. 0.0"48 value="3.3.0" 49 49 description="The BASE version that this project depends on." 50 50 /> -
extensions/net.sf.basedb.ftp/trunk/src/net/sf/basedb/clients/ftp/BaseUser.java
r1418 r2281 44 44 import net.sf.basedb.core.Type; 45 45 import net.sf.basedb.core.User; 46 import net.sf.basedb.core.authentication.LoginRequest; 46 47 import net.sf.basedb.core.query.Expressions; 47 48 import net.sf.basedb.core.query.Hql; … … 232 233 log.debug("Password:" + password); 233 234 SessionControl sc = Application.newSessionControl(clientId, remoteId, null); 234 sc.login( login, password, null);235 sc.login(new LoginRequest(login, password)); 235 236 log.debug("Login ok, loading user info and home directory. SessionID=" + sc.getId()); 236 237
Note: See TracChangeset
for help on using the changeset viewer.