edu.ksi.virtualclassroom.service
Class MessageService

java.lang.Object
  extended byedu.ksi.virtualclassroom.service.MessageService

public class MessageService
extends java.lang.Object

Version:
$Revision$ This is a sample service intended to demonstrate the basic process of how a service will work. 1. deserialize xmlString into Java Objects 2. alter Java Objects 3. serialize Objects into xml String NOTE: it may be possible to make a base service class that handles the serialization deserialization that all service classes can extend. I am waiting for the Spring layer to be completed to code this Service will soon become Spring beans and have access to extensions provided by the Spring Framework
Author:
John Menke Jan 23, 2005 MessageService

Constructor Summary
MessageService()
           
 
Method Summary
 java.lang.String testService(java.lang.String xmlString)
          Method testService
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MessageService

public MessageService()
Method Detail

testService

public java.lang.String testService(java.lang.String xmlString)
Method testService

Parameters:
xmlString - String
Returns:
String Simple test method to first call a supporting class and then serialize the String passed in as parameter into a VirtualclassroomDO. Then change the DO and Serialize into String representation and return NOTE: SERVICES ARE PLANNED TO BE MOVED INTO SPRING FRAMEWORK THIS IS ONLY A TEST METHOD THAT CAN BE USED SO THAT WORK ON THE XSD AND MESSAGING API CAN CONTINUE