TUSCANY-3288 - Fixing up test scenario and re-enabling test case

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@824230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
lresende 2009-10-12 05:14:09 +00:00
parent b289688fc6
commit ac29e4e20c
3 changed files with 2 additions and 53 deletions

View file

@ -27,55 +27,6 @@ import org.apache.tuscany.sca.data.collection.NotFoundException;
import org.osoa.sca.annotations.Remotable;
@Remotable
//@XmlSeeAlso(Headline.class)
public interface NewsService /*extends Collection<String, Headline>*/{
public interface NewsService extends Collection<String, Headline>{
/**
* Get the whole collection.
*
* @return the whole collection.
*/
Entry<String, Headline>[] getAll();
/**
* Returns a collection resulting from a query.
*
* @return the collection.
*/
Entry<String, Headline>[] query(String queryString);
/**
* Creates a new item.
*
* @param key
* @param item
* @return
*/
String post(String key, Headline item);
/**
* Retrieves an item.
*
* @param key
* @return
*/
Headline get(String key) throws NotFoundException;
/**
* Updates an item.
*
* @param key
* @param item
* @return
*/
void put(String key, Headline item) throws NotFoundException;
/**
* Delete an item.
*
* @param key
*/
void delete(String key) throws NotFoundException;
}

View file

@ -22,8 +22,6 @@ package org.apache.tuscany.sca.binding.atom.news;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlSeeAlso;
import org.apache.tuscany.sca.data.collection.Entry;
import org.apache.tuscany.sca.data.collection.NotFoundException;
import org.osoa.sca.annotations.Init;

View file

@ -55,7 +55,7 @@ public class NewsServiceTestCase {
}
@Test
@Ignore("TUSCANY-3288")
//@Ignore("TUSCANY-3288")
public void testNewsService() throws Exception {
Entry<String, Headline>[] entries = newsService.getAll();