Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r2991 - branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType

Subject: perfsonar development work

List archive

perfsonar: r2991 - branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r2991 - branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType
  • Date: Wed, 24 Oct 2007 09:58:12 -0400

Author: mac
Date: 2007-10-24 09:58:11 -0400 (Wed, 24 Oct 2007)
New Revision: 2991

Added:

branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSJoin.java

branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSSummary.java

branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSToken.java

branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/LSControlAction.java
Modified:

branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/XmlTypeLSServiceEngine.java
Log:
Action templates for future work (dLS). Doesn't change anything else for now

Added:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSJoin.java


Property changes on:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSJoin.java
___________________________________________________________________
Name: svn:keywords
+ Author Date Id Revision
Name: svn:eol-style
+ native

Added:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSSummary.java


Property changes on:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSSummary.java
___________________________________________________________________
Name: svn:keywords
+ Author Date Id Revision
Name: svn:eol-style
+ native

Added:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSToken.java


Property changes on:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/DLSToken.java
___________________________________________________________________
Name: svn:keywords
+ Author Date Id Revision
Name: svn:eol-style
+ native

Added:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/LSControlAction.java


Property changes on:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/LSControlAction.java
___________________________________________________________________
Name: svn:keywords
+ Author Date Id Revision
Name: svn:eol-style
+ native

Modified:
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/XmlTypeLSServiceEngine.java
===================================================================
---
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/XmlTypeLSServiceEngine.java
2007-10-24 13:47:36 UTC (rev 2990)
+++
branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType/XmlTypeLSServiceEngine.java
2007-10-24 13:58:11 UTC (rev 2991)
@@ -99,6 +99,7 @@
ActionType.LS_DEREGISTER,
ActionType.LS_KEEPALIVE,
ActionType.LS_CLEANUP,
+ ActionType.LS_CONTROL,
ActionType.ECHO
};

@@ -202,6 +203,11 @@
LSAction action = new LSCleanup(dao);
response = action.performAction(request);

+ } else if (actionType.equals(ActionType.LS_CONTROL)) {
+
+ LSAction action = new LSControlAction(dao);
+ response = action.performAction(request);
+
} else if (actionType.equals(ActionType.ECHO)) {

LSAction action = new EchoRequestAction(dao);



  • perfsonar: r2991 - branches/new-structure/trunk/geant2_java-xml-ls/src/main/java/org/perfsonar/service/lookupService/xmlType, svnlog, 10/24/2007

Archive powered by MHonArc 2.6.16.

Top of Page