Folks,
A check-in about 12 hours ago seems to have broken the altrmi build.
Specifically, a method was added to the InterfaceLookup interface, while not
all implementations of that interface implement the method. The relevant
implementation changes are obvious, so I made them an am submitting a patch.
Diffs to resolve the issue follow:
Index: subscription/AbstractSubscriber.java
===================================================================
RCS file:
/home/cvspublic/jakarta-avalon-excalibur/altrmi/src/java/org/apache/ex
calibur/altrmi/blocks/subscription/AbstractSubscriber.java,v
retrieving revision 1.5
diff -u -r1.5 AbstractSubscriber.java
--- subscription/AbstractSubscriber.java 9 Jan 2003 22:55:09 -00001.5
+++ subscription/AbstractSubscriber.java 13 Jan 2003 00:28:13 -0000
@@ -96,4 +96,10 @@
{
return m_altrmiFactory.list();
}
+
+ public boolean hasService(String service)
+ {
+ return m_altrmiFactory.hasService(service);
+ }
+
}
Index: impl/subscriber/InterfaceLookupWrapper.java
===================================================================
RCS file:
/home/cvspublic/jakarta-avalon-excalibur/altrmi/src/java/org/apache/ex
calibur/altrmi/client/impl/subscriber/InterfaceLookupWrapper.java,v
retrieving revision 1.1
diff -u -r1.1 InterfaceLookupWrapper.java
--- impl/subscriber/InterfaceLookupWrapper.java 9 Jan 2003 22:55:29 -00001.1
+++ impl/subscriber/InterfaceLookupWrapper.java 13 Jan 2003 00:28:52 -0000
@@ -103,6 +103,11 @@
return this.m_lookup.list();
}
+ public boolean hasService(String service)
+ {
+ return this.m_lookup.hasService(service);
+ }
+
public String getTextToSignForAuthentication()
{
return this.m_lookup.getTextToSignForAuthentication();
--Peter
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>