mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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:
@@ -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;
|
@@ -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;
|
@@ -43,7 +43,7 @@ import java.util.Map;
|
||||
* @author Saravanan Sellathurai
|
||||
*/
|
||||
|
||||
public class GetClassDetails extends DeclarativeWebScript
|
||||
public class ClassGet extends DeclarativeWebScript
|
||||
{
|
||||
|
||||
private DictionaryService dictionaryservice;
|
@@ -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;
|
@@ -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";
|
||||
|
@@ -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;
|
@@ -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;
|
@@ -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;
|
Reference in New Issue
Block a user