Initial tidy up of existing data dictionary REST API implementation.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18512 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Roy Wetherall
2010-02-09 05:13:18 +00:00
parent 4add52a7c1
commit 9177ad3927
27 changed files with 22 additions and 79 deletions

View File

@@ -40,7 +40,7 @@ import java.util.Map;
* @author Saravanan Sellathurai
*/
public class GetAssociationDef extends DeclarativeWebScript
public class AssociationGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;
private DictionaryHelper dictionaryhelper;

View File

@@ -41,7 +41,7 @@ import java.util.Map;
* @author Saravanan Sellathurai
*/
public class GetAssociationDefs extends DeclarativeWebScript
public class AssociationsGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;
private DictionaryHelper dictionaryhelper;

View File

@@ -43,7 +43,7 @@ import java.util.Map;
* @author Saravanan Sellathurai
*/
public class GetClassDetails extends DeclarativeWebScript
public class ClassGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;

View File

@@ -45,7 +45,7 @@ import java.util.List;
* @author Saravanan Sellathurai
*/
public class GetClassDetail extends DeclarativeWebScript
public class ClassesGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;
private DictionaryHelper dictionaryhelper;

View File

@@ -34,11 +34,11 @@ import org.json.JSONObject;
import org.json.JSONArray;
/**
* Unit Test for Dictionaryervice REST API
* Unit test for Dictionary REST API
* @author Saravanan Sellathurai
*/
public class DictionaryServiceTest extends BaseWebScriptTest
public class DictionaryRestApiTest extends BaseWebScriptTest
{
private static final String URL_SITES = "/api/classes";

View File

@@ -42,7 +42,7 @@ import java.util.Map;
* @author Saravanan Sellathurai
*/
public class GetPropertyDefs extends DeclarativeWebScript
public class PropertiesGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;
private DictionaryHelper dictionaryhelper;

View File

@@ -41,7 +41,7 @@ import java.util.Map;
* @author Saravanan Sellathurai
*/
public class GetPropertyDef extends DeclarativeWebScript
public class PropertyGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;
private DictionaryHelper dictionaryhelper;

View File

@@ -39,12 +39,12 @@ import java.util.HashMap;
import java.util.Map;
/**
*
* Webscript to get the Sub-Classdefinitions using classfilter , namespacePrefix and name
*
* @author Saravanan Sellathurai
*/
public class GetSubClassesDef extends DeclarativeWebScript
public class SubClassesGet extends DeclarativeWebScript
{
private DictionaryService dictionaryservice;
private DictionaryHelper dictionaryhelper;