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/15 11:27:53 UTC

svn commit: r1350550 - in /manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client: IDfPersistentObject.java IDfTypedObject.java

Author: kwright
Date: Fri Jun 15 09:27:53 2012
New Revision: 1350550

URL: http://svn.apache.org/viewvc?rev=1350550&view=rev
Log:
Move methods to the appropriate interface.

Added:
    manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java   (with props)
Modified:
    manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfPersistentObject.java

Modified: manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfPersistentObject.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfPersistentObject.java?rev=1350550&r1=1350549&r2=1350550&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfPersistentObject.java (original)
+++ manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfPersistentObject.java Fri Jun 15 09:27:53 2012
@@ -22,16 +22,8 @@ import com.documentum.fc.common.*;
 
 /** Stub interface to allow the connector to build fully.
 */
-public interface IDfPersistentObject
+public interface IDfPersistentObject extends IDfTypedObject
 {
-  public String getObjectId()
-    throws DfException;
   public boolean isDeleted()
     throws DfException;
-  public int getValueCount(String attribute)
-    throws DfException;
-  public String getRepeatingString(String attribute, int index)
-    throws DfException;
-  public String getString(String attribute)
-    throws DfException;
 }

Added: manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java?rev=1350550&view=auto
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java (added)
+++ manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java Fri Jun 15 09:27:53 2012
@@ -0,0 +1,35 @@
+/* $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.documentum.fc.client;
+
+import com.documentum.fc.common.*;
+
+/** Stub interface to allow the connector to build fully.
+*/
+public interface IDfTypedObject
+{
+  public IDfId getObjectId()
+    throws DfException;
+  public int getValueCount(String attribute)
+    throws DfException;
+  public String getRepeatingString(String attribute, int index)
+    throws DfException;
+  public String getString(String attribute)
+    throws DfException;
+}

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/documentum/build-stub/src/main/java/com/documentum/fc/client/IDfTypedObject.java
------------------------------------------------------------------------------
    svn:keywords = Id