Author: kwright
Date: Wed May 15 14:54:49 2013
New Revision: 1482876
URL: http://svn.apache.org/r1482876
Log:
Add needed methods to stubs
Added:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java
(with props)
Modified:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LAPI_USERS.java
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValue.java
Modified:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LAPI_USERS.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LAPI_USERS.java?rev=1482876&r1=1482875&r2=1482876&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LAPI_USERS.java
(original)
+++
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LAPI_USERS.java
Wed May 15 14:54:49 2013
@@ -45,5 +45,9 @@ public class LAPI_USERS
return 0;
}
+ public int ListUsers(LLValue rval)
+ {
+ return 0;
+ }
}
Modified:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValue.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValue.java?rev=1482876&r1=1482875&r2=1482876&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValue.java
(original)
+++
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValue.java
Wed May 15 14:54:49 2013
@@ -91,7 +91,7 @@ public class LLValue
return false;
}
- public Enumeration enumerateValues()
+ public LLValueEnumeration enumerateValues()
{
return null;
}
Added:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java?rev=1482876&view=auto
==============================================================================
---
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java
(added)
+++
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java
Wed May 15 14:54:49 2013
@@ -0,0 +1,50 @@
+/* $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.opentext.api;
+
+import java.util.Enumeration;
+
+/** Stub classes to get connector to build.
+*/
+public class LLValueEnumeration
+{
+ public LLValueEnumeration()
+ {
+ }
+
+ public LLValueEnumeration(Enumeration e)
+ {
+ }
+
+ public boolean hasMoreElements()
+ {
+ return false;
+ }
+
+ public Object nextElement()
+ {
+ return null;
+ }
+
+ public LLValue nextValue()
+ {
+ return null;
+ }
+}
+
Propchange:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
manifoldcf/branches/CONNECTORS-689/connectors/livelink/build-stub/src/main/java/com/opentext/api/LLValueEnumeration.java
------------------------------------------------------------------------------
svn:keywords = Id