Return-Path: X-Original-To: apmail-incubator-isis-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-isis-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8B491B22F for ; Sun, 22 Jan 2012 13:05:26 +0000 (UTC) Received: (qmail 52090 invoked by uid 500); 22 Jan 2012 13:05:26 -0000 Delivered-To: apmail-incubator-isis-commits-archive@incubator.apache.org Received: (qmail 52070 invoked by uid 500); 22 Jan 2012 13:05:26 -0000 Mailing-List: contact isis-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: isis-dev@incubator.apache.org Delivered-To: mailing list isis-commits@incubator.apache.org Received: (qmail 52063 invoked by uid 99); 22 Jan 2012 13:05:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jan 2012 13:05:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jan 2012 13:05:22 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7417D2388ABA; Sun, 22 Jan 2012 13:04:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1234504 [8/9] - in /incubator/isis/trunk/framework/runtimes: ./ dflt/ dflt/bytecode/ dflt/bytecode/dflt/ dflt/bytecode/dflt/src/main/java/org/apache/isis/runtimes/dflt/bytecode/dflt/classsubstitutor/ dflt/bytecode/dflt/src/main/java/org/ap... Date: Sun, 22 Jan 2012 13:04:33 -0000 To: isis-commits@incubator.apache.org From: danhaywood@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120122130438.7417D2388ABA@eris.apache.org> Modified: incubator/isis/trunk/framework/runtimes/dflt/runtime/src/test-archived/org.nakedobjects.nof.reflect.remote.spec/DummyAction.java URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/runtimes/dflt/runtime/src/test-archived/org.nakedobjects.nof.reflect.remote.spec/DummyAction.java?rev=1234504&r1=1234503&r2=1234504&view=diff ============================================================================== --- incubator/isis/trunk/framework/runtimes/dflt/runtime/src/test-archived/org.nakedobjects.nof.reflect.remote.spec/DummyAction.java (original) +++ incubator/isis/trunk/framework/runtimes/dflt/runtime/src/test-archived/org.nakedobjects.nof.reflect.remote.spec/DummyAction.java Sun Jan 22 13:04:05 2012 @@ -18,311 +18,311 @@ */ -package org.apache.isis.nof.reflect.remote.spec; - -import org.apache.isis.noa.adapter.ObjectAdapter; -import org.apache.isis.noa.adapter.ObjectAdapterReference; -import org.apache.isis.noa.facets.Facet; -import org.apache.isis.metamodel.facets.actions.debug.DebugFacet; -import org.apache.isis.metamodel.facets.actions.executed.ExecutedFacet; -import org.apache.isis.metamodel.facets.actions.exploration.ExplorationFacet; -import org.apache.isis.noa.reflect.Consent; -import org.apache.isis.noa.reflect.ObjectAction; -import org.apache.isis.noa.reflect.ObjectActionParameter; -import org.apache.isis.noa.reflect.ObjectActionParameter.Filter; -import org.apache.isis.noa.spec.ObjectSpecification; -import org.apache.isis.nof.core.context.IsisContext; -import org.apache.isis.nof.core.reflect.Allow; -import org.apache.isis.nof.core.util.NameConvertor; -import org.apache.isis.nof.core.util.NotImplementedException; -import org.apache.isis.nof.reflect.peer.ActionPeer; -import org.apache.isis.nof.reflect.peer.MemberIdentifier; -import org.apache.isis.nof.reflect.spec.DefaultOneToOneActionParameter; -import org.apache.isis.nof.reflect.spec.DefaultValueActionParameter; -import org.apache.isis.testing.TestSession; - - -public class DummyAction implements ObjectAction { - public final ActionPeer peer; - - public DummyAction(final ActionPeer peer) { - this.peer = peer; - } - - public boolean[] canParametersWrap() { - return null; - } - - public String debugData() { - return ""; - } - - public ObjectAdapter execute(final ObjectAdapterReference object, final ObjectAdapter[] parameters) { - return peer.execute(object, parameters); - } - - public ObjectAction[] getActions() { - return new ObjectAction[0]; - } - - public ObjectAdapter[] getDefaultParameterValues(ObjectAdapterReference target) { - throw new NotImplementedException(); - } - - public String getDescription() { - return ""; - } - - public Facet getFacet(final Class cls) { - return null; - } - - public Class[] getFacetTypes() { - return new Class[0]; - } - - public Facet[] getFacets(Facet.Filter filter) { - return new Facet[]{}; - } - - public void addFacet(Facet facet) { - } - - public void removeFacet(Facet facet) { - } - - public String getHelp() { - return ""; - } - - public String getId() { - return NameConvertor.simpleName(peer.getIdentifier().getName()); - } - - public MemberIdentifier getIdentifier() { - throw new NotImplementedException(); - } - - public String getName() { - return ""; - } - - public ObjectSpecification getOnType() { - return peer.getOnType(); - } - - public ObjectAdapter[][] getOptions(ObjectAdapterReference target) { - return null; - } - - public int getParameterCount() { - return peer.getParameterCount(); - } - - public String[] getParameterDescriptions() { - return null; - } - - public int[] getParameterMaxLengths() { - return null; - } - - public String[] getParameterNames() { - return new String[]{}; - } - - public int[] getParameterNoLines() { - return null; - } - - /** - * Build lazily by {@link #getParameters()}. - */ - private ObjectActionParameter[] parameters; - public ObjectActionParameter[] getParameters() { - if (parameters == null) { - parameters = new ObjectActionParameter[getParameterCount()]; - ObjectSpecification[] parameterTypes = getParameterTypes(); - String[] parameterNames = getParameterNames(); - String[] parameterDescriptions = getParameterDescriptions(); - boolean[] optionalParameters = getOptionalParameters(); - - int[] parameterNoLines = getParameterNoLines(); - boolean[] canParametersWrap = canParametersWrap(); - int[] parameterMaxLengths = getParameterMaxLengths(); - int[] parameterTypicalLengths = getParameterTypicalLengths(); - - for(int i=0; i - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: incubator/isis/trunk/framework/runtimes/dflt/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/NOTICE ------------------------------------------------------------------------------ svn:eol-style = native Modified: incubator/isis/trunk/framework/runtimes/dflt/webapp/pom.xml URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/runtimes/dflt/webapp/pom.xml?rev=1234504&r1=1234503&r2=1234504&view=diff ============================================================================== --- incubator/isis/trunk/framework/runtimes/dflt/webapp/pom.xml (original) +++ incubator/isis/trunk/framework/runtimes/dflt/webapp/pom.xml Sun Jan 22 13:04:05 2012 @@ -1,110 +1,110 @@ - - - - 4.0.0 - - - org.apache.isis.runtimes - dflt - 0.2.0-incubating-SNAPSHOT - - - org.apache.isis.runtimes.dflt - webapp - Default Runtime Webapp Components - - - ../../.. - runtimes/dflt/webapp/ - - - - http://incubator.apache.org/isis/${relativeUrl} - - - - - org.apache.maven.plugins - maven-eclipse-plugin - - 2.0 - - - - - org.apache.maven.plugins - maven-war-plugin - - - - org.mortbay.jetty - maven-jetty-plugin - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin} - false - - false - - - - false - - dependencies - dependency-convergence - plugins - summary - - - - - - - - - - org.apache.isis.runtimes.dflt - runtime - - - org.apache.isis.runtimes.dflt - monitoring - - - - org.apache.isis.core - webapp - - - - org.apache.geronimo.specs - geronimo-servlet_2.5_spec - provided - - - - + + + + 4.0.0 + + + org.apache.isis.runtimes + dflt + 0.2.0-incubating-SNAPSHOT + + + org.apache.isis.runtimes.dflt + webapp + Default Runtime Webapp Components + + + ../../.. + runtimes/dflt/webapp/ + + + + http://incubator.apache.org/isis/${relativeUrl} + + + + + org.apache.maven.plugins + maven-eclipse-plugin + + 2.0 + + + + + org.apache.maven.plugins + maven-war-plugin + + + + org.mortbay.jetty + maven-jetty-plugin + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${maven-project-info-reports-plugin} + false + + false + + + + false + + dependencies + dependency-convergence + plugins + summary + + + + + + + + + + org.apache.isis.runtimes.dflt + runtime + + + org.apache.isis.runtimes.dflt + monitoring + + + + org.apache.isis.core + webapp + + + + org.apache.geronimo.specs + geronimo-servlet_2.5_spec + provided + + + + Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/IsisSessionFilter.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/IsisWebAppBootstrapper.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/WebAppConstants.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/auth/AuthenticationSessionStrategy.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/auth/AuthenticationSessionStrategyAbstract.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/auth/AuthenticationSessionStrategyDefault.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/monitor/MonitorServlet.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/main/java/org/apache/isis/runtimes/dflt/webapp/monitor/WebServerMonitorInstaller.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/isis/trunk/framework/runtimes/dflt/webapp/src/site/apt/jottings.apt ------------------------------------------------------------------------------ svn:eol-style = native