Author: peter_firmstone Date: Sat Mar 17 23:34:00 2012 New Revision: 1302036
URL: http://svn.apache.org/viewvc?rev=1302036&view=rev Log: Cleaning, deleting and reorganising Added: river/jtsk/trunk/src/org/apache/river/api/lookup/package.html (with props) Removed: river/jtsk/trunk/src/org/apache/river/api/delegates/ river/jtsk/trunk/src/org/apache/river/impl/security/LocalPermissions.java river/jtsk/trunk/src/org/apache/river/impl/security/PermissionInfo.java river/jtsk/trunk/src/org/apache/river/impl/security/dos/ river/jtsk/trunk/src/org/apache/river/impl/security/policy/ river/jtsk/trunk/test/src/net/jini/discovery/ river/jtsk/trunk/test/src/org/apache/river/impl/security/policy/ Modified: river/jtsk/trunk/hudson.xml river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceItemClasspathSub.java river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceResultStreamFilter.java river/jtsk/trunk/src/org/apache/river/api/lookup/StreamServiceRegistrar.java Modified: river/jtsk/trunk/hudson.xml URL: http://svn.apache.org/viewvc/river/jtsk/trunk/hudson.xml?rev=1302036&r1=1302035&r2=1302036&view=diff ============================================================================== --- river/jtsk/trunk/hudson.xml (original) +++ river/jtsk/trunk/hudson.xml Sat Mar 17 23:34:00 2012 @@ -34,7 +34,7 @@ <fileset dir="dep-libs/animal-sniffer"> <include name="**/*.jar"/> </fileset> - <fileset dir="asm"> + <fileset dir="dep-libs/asm"> <include name="**/*.jar"/> </fileset> </classpath> Modified: river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceItemClasspathSub.java URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceItemClasspathSub.java?rev=1302036&r1=1302035&r2=1302036&view=diff ============================================================================== --- river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceItemClasspathSub.java (original) +++ river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceItemClasspathSub.java Sat Mar 17 23:34:00 2012 @@ -25,33 +25,34 @@ import net.jini.core.lookup.ServiceID; import net.jini.core.lookup.ServiceItem; /** + * <p> * ServiceItemClasspathSub is intended for client side filtering of lookup * service results prior to clients using a service, the lookup service * that implements this class, implements #getServiceItem(), so clients * can obtain a complete ServiceItem when required after filtering. - * + * </p><p> * ServiceItemClasspathSub extends ServiceItem and can be used anywhere a * ServiceItem is required for querying or inspecting Entry fields that are * resolvable from the local classpath. If dynamically downloaded code is * required, Remote or Serializable object references are not resolved, * instead, such fields are set to null to avoid codebase download. - * + * </p><p> * ServiceItemClasspathSub inherits all fields from ServiceItem. - * + * </p><p> * Some fields in ServiceItemClasspathSub may be null or fields in Entry's may * be null or even the service reference may be null, these fields would be - * non-null in a ServiceItem that resolves classes from dynamicly downloaded + * non-null in a ServiceItem that resolves classes from dynamically downloaded * code or a remote codebase. - * + * </p><p> * The serviceID field shall be non-null always. - * + * </p><p> * ServiceItem's toString() method will return a different result for * ServiceItemClasspathSub instances. - * + * </p><p> * When required, a new ServiceItem that is unmarshalled - * using remote codebases and dynamicly downloaded code can be obtained + * using remote codebases and dynamically downloaded code can be obtained * by calling #getServiceItem(). - * + * </p> * @author Peter Firmstone. */ public abstract class ServiceItemClasspathSub extends ServiceItem{ Modified: river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceResultStreamFilter.java URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceResultStreamFilter.java?rev=1302036&r1=1302035&r2=1302036&view=diff ============================================================================== --- river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceResultStreamFilter.java (original) +++ river/jtsk/trunk/src/org/apache/river/api/lookup/ServiceResultStreamFilter.java Sat Mar 17 23:34:00 2012 @@ -27,16 +27,17 @@ import net.jini.core.lookup.ServiceItem; import net.jini.lookup.ServiceItemFilter; /** + * <p> * A Filter utility class designed to filter out unwanted results. Filters can * be daisy chained with pre prepared filters to perform logical AND operations. - * + * <p></p> * Logical OR operations can be simulated by providing multiple filters in * constructors. - * + * <p></p> * Any references to ServiceResultStreamFilter should be set to null * immediately after filtering. * New instances can be created as required. - * + * <p> * @author Peter Firmstone. */ public class ServiceResultStreamFilter implements ResultStream<ServiceItem> { Modified: river/jtsk/trunk/src/org/apache/river/api/lookup/StreamServiceRegistrar.java URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/org/apache/river/api/lookup/StreamServiceRegistrar.java?rev=1302036&r1=1302035&r2=1302036&view=diff ============================================================================== --- river/jtsk/trunk/src/org/apache/river/api/lookup/StreamServiceRegistrar.java (original) +++ river/jtsk/trunk/src/org/apache/river/api/lookup/StreamServiceRegistrar.java Sat Mar 17 23:34:00 2012 @@ -24,6 +24,7 @@ import net.jini.core.lookup.ServiceItem; import org.apache.river.api.util.ResultStream; /** + * <p> * Defines an extension interface to the lookup service, for use on large or * global networks such as the internet or low bandwidth networks. * The interface is not a remote interface; each implementation of the @@ -35,20 +36,20 @@ import org.apache.river.api.util.ResultS * they are proxies for the same lookup service. Every method invocation * (on both StreamServiceRegistrar and ServiceRegistration) is atomic with * respect to other invocations. - * + * <p></p> * The StreamServiceRegistrar is intended to perform the same function * as the ServiceRegistrar, but with the ability to return results as a * stream, so memory consumption is minimised at the client and network * communication is minimised between the client and lookup service server. - * + * <p></p> * All clients utilising ServiceRegistrar, should switch to the * StreamServiceRegistrar. - * + * <p> * @see ServiceRegistrar * @see PortableServiceRegistrar * @see ServiceRegistration * @author Peter Firmstone - * @since 2.2.0 + * @since 2.2.1 */ public interface StreamServiceRegistrar extends ServiceRegistrar{ Added: river/jtsk/trunk/src/org/apache/river/api/lookup/package.html URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/org/apache/river/api/lookup/package.html?rev=1302036&view=auto ============================================================================== --- river/jtsk/trunk/src/org/apache/river/api/lookup/package.html (added) +++ river/jtsk/trunk/src/org/apache/river/api/lookup/package.html Sat Mar 17 23:34:00 2012 @@ -0,0 +1,30 @@ +<!-- + ! Licensed to the Apache Software Foundation (ASF) under one + ! or more contributor license agreements. See the NOTICE file + ! distributed with this work for additional information + ! regarding copyright ownership. The ASF licenses this file + ! to you under the Apache License, Version 2.0 (the + ! "License"); you may not use this file except in compliance + ! with the License. You may obtain a copy of the License at + ! + ! http://www.apache.org/licenses/LICENSE-2.0 + ! + ! Unless required by applicable law or agreed to in writing, software + ! distributed under the License is distributed on an "AS IS" BASIS, + ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ! See the License for the specific language governing permissions and + ! limitations under the License. +--> +<!DOCTYPE html> +<html> + <head> + <title></title> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + </head> + <body> + <div>The classes in this package define a future, yet to be implemented + Public API for a new lookup service. It has been provided for review, + prior to implementation. These classes may be subject to change + in a future version of River.</div> + </body> +</html> Propchange: river/jtsk/trunk/src/org/apache/river/api/lookup/package.html ------------------------------------------------------------------------------ svn:eol-style = native
