You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2012/06/20 11:39:32 UTC

svn commit: r1352015 - in /manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core: Factory.java InstantiatingScope.java ObjectStore.java Scope.java

Author: kwright
Date: Wed Jun 20 09:39:31 2012
New Revision: 1352015

URL: http://svn.apache.org/viewvc?rev=1352015&view=rev
Log:
Fix getClassDescription

Added:
    manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/InstantiatingScope.java   (with props)
    manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java   (with props)
Modified:
    manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Factory.java
    manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java

Modified: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Factory.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Factory.java?rev=1352015&r1=1352014&r2=1352015&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Factory.java (original)
+++ manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Factory.java Wed Jun 20 09:39:31 2012
@@ -77,7 +77,7 @@ public class Factory
   
   public static class ClassDescription
   {
-    public static com.filenet.api.meta.ClassDescription fetchInstance(com.filenet.api.core.ObjectStore os, String className, PropertyFilter filter)
+    public static com.filenet.api.meta.ClassDescription fetchInstance(com.filenet.api.core.Scope scope, String className, PropertyFilter filter)
     {
       return null;
     }

Added: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/InstantiatingScope.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/InstantiatingScope.java?rev=1352015&view=auto
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/InstantiatingScope.java (added)
+++ manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/InstantiatingScope.java Wed Jun 20 09:39:31 2012
@@ -0,0 +1,25 @@
+/* $Id: Folder.java 1342461 2012-05-24 22:02:53Z kwright $ */
+
+/**
+* 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.
+*/
+package com.filenet.api.core;
+
+/** Stub interface to allow the connector to build fully.
+*/
+public interface InstantiatingScope extends Scope
+{
+}

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/InstantiatingScope.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java?rev=1352015&r1=1352014&r2=1352015&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java (original)
+++ manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java Wed Jun 20 09:39:31 2012
@@ -20,7 +20,7 @@ package com.filenet.api.core;
 
 /** Stub interface to allow the connector to build fully.
 */
-public interface ObjectStore
+public interface ObjectStore extends InstantiatingScope
 {
   public Folder get_RootFolder();
 }

Added: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java?rev=1352015&view=auto
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java (added)
+++ manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java Wed Jun 20 09:39:31 2012
@@ -0,0 +1,25 @@
+/* $Id$ */
+
+/**
+* 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.
+*/
+package com.filenet.api.core;
+
+/** Stub interface to allow the connector to build fully.
+*/
+public interface Scope
+{
+}

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Scope.java
------------------------------------------------------------------------------
    svn:keywords = Id