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 2013/09/06 07:54:15 UTC

svn commit: r1520497 - /manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/

Author: kwright
Date: Fri Sep  6 05:54:15 2013
New Revision: 1520497

URL: http://svn.apache.org/r1520497
Log:
More changes related to CONNECTORS-770.

Added:
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java   (with props)
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java   (with props)
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java   (with props)
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java   (with props)
Modified:
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Document.java
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Domain.java
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Folder.java
    manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java

Added: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java?rev=1520497&view=auto
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java (added)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java Fri Sep  6 05:54:15 2013
@@ -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 Containable
+{
+}

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Containable.java
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Document.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Document.java?rev=1520497&r1=1520496&r2=1520497&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Document.java (original)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Document.java Fri Sep  6 05:54:15 2013
@@ -23,7 +23,7 @@ import com.filenet.api.collection.Access
 
 /** Stub interface to allow the connector to build fully.
 */
-public interface Document extends Versionable, EngineObject
+public interface Document extends Versionable, Containable, Subscribable, RepositoryObject, IndependentlyPersistableObject
 {
   public ContentElementList get_ContentElements();
   public AccessPermissionList get_Permissions();

Modified: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Domain.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Domain.java?rev=1520497&r1=1520496&r2=1520497&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Domain.java (original)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Domain.java Fri Sep  6 05:54:15 2013
@@ -20,6 +20,6 @@ package com.filenet.api.core;
 
 /** Stub interface to allow the connector to build fully.
 */
-public interface Domain
+public interface Domain extends InstantiatingScope, IndependentlyPersistableObject
 {
 }

Modified: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Folder.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Folder.java?rev=1520497&r1=1520496&r2=1520497&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Folder.java (original)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Folder.java Fri Sep  6 05:54:15 2013
@@ -22,7 +22,7 @@ import com.filenet.api.collection.Folder
 
 /** Stub interface to allow the connector to build fully.
 */
-public interface Folder
+public interface Folder extends IndependentlyPersistableObject, Versionable, Containable, Subscribable
 {
   public FolderSet get_SubFolders();
   public String get_FolderName();

Added: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java?rev=1520497&view=auto
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java (added)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java Fri Sep  6 05:54:15 2013
@@ -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 IndependentlyPersistableObject extends IndependentObject
+{
+}

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/IndependentlyPersistableObject.java
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java?rev=1520497&r1=1520496&r2=1520497&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java (original)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/ObjectStore.java Fri Sep  6 05:54:15 2013
@@ -20,7 +20,7 @@ package com.filenet.api.core;
 
 /** Stub interface to allow the connector to build fully.
 */
-public interface ObjectStore extends InstantiatingScope
+public interface ObjectStore extends InstantiatingScope, IndependentlyPersistableObject
 {
   public Folder get_RootFolder();
 }

Added: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java?rev=1520497&view=auto
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java (added)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java Fri Sep  6 05:54:15 2013
@@ -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 RepositoryObject
+{
+}

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/RepositoryObject.java
------------------------------------------------------------------------------
    svn:keywords = Id

Added: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java?rev=1520497&view=auto
==============================================================================
--- manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java (added)
+++ manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java Fri Sep  6 05:54:15 2013
@@ -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 Subscribable
+{
+}

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/trunk/connectors/filenet/build-stub/src/main/java/com/filenet/api/core/Subscribable.java
------------------------------------------------------------------------------
    svn:keywords = Id