From: <id...@us...> - 2009-04-22 17:16:04
|
Revision: 159 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=159&view=rev Author: idueppe Date: 2009-04-22 17:14:56 +0000 (Wed, 22 Apr 2009) Log Message: ----------- fixed build order for oca-openuss by moving OpenUSS.java to test sources Added Paths: ----------- trunk/cse-ip/oca-openuss/src/test/java/de/campussource/cse/oca/openuss/OpenUSS.java Removed Paths: ------------- trunk/cse-ip/oca-openuss/src/main/java/de/ Added: trunk/cse-ip/oca-openuss/src/test/java/de/campussource/cse/oca/openuss/OpenUSS.java =================================================================== --- trunk/cse-ip/oca-openuss/src/test/java/de/campussource/cse/oca/openuss/OpenUSS.java (rev 0) +++ trunk/cse-ip/oca-openuss/src/test/java/de/campussource/cse/oca/openuss/OpenUSS.java 2009-04-22 17:14:56 UTC (rev 159) @@ -0,0 +1,117 @@ +package de.campussource.cse.oca.openuss; + +import java.util.List; + +import javax.ejb.Stateless; +import javax.jws.WebService; +@Stateless +@WebService( + name="LectureWebService", + targetNamespace="http://www.openuss.org/services", + endpointInterface="") +public class OpenUSS implements LectureWebService{ + + @Override + public boolean assignCourseMember(long courseId, long userId, Role role) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + + @Override + public Long createCourse(Course course) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public Long createInstitute(Institute institute) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public Long createUser(User user) throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public boolean deleteCourse(long courseId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + + @Override + public boolean deleteUser(long userId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + + @Override + public Long findUser(String username) + throws LectureLogicException_Exception { + System.out.println("Username: "+username); + return 1L; + } + + @Override + public Course getCourse(long courseId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public Institute getInstitute(long instituteId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public Role isCourseMember(long courseId, long userId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public List<Institute> listInstitute(long departmentId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return null; + } + + @Override + public boolean removeCourseMember(long courseId, long userId) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + + @Override + public boolean updateCourse(Course course) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + + @Override + public boolean updateInstitute(Institute insitute) + throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + + @Override + public boolean updateUser(User user) throws LectureLogicException_Exception { + // TODO Auto-generated method stub + return false; + } + +} Property changes on: trunk/cse-ip/oca-openuss/src/test/java/de/campussource/cse/oca/openuss/OpenUSS.java ___________________________________________________________________ Added: svn:mime-type + text/plain This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |