ModelingRESTEndpoints.java 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. /***************************************************************************************
  2. * IBM Confidential
  3. *
  4. * OCO Source Materials
  5. *
  6. * IBM Cognos Products: Moser
  7. *
  8. * (C) Copyright IBM Corp. 2020
  9. *
  10. * The source code for this program is not published or otherwise
  11. * divested of its trade secrets, irrespective of what has been
  12. * deposited with the U.S. Copyright Office.
  13. *
  14. ***************************************************************************************/
  15. package com.ibm.bi.platform.modeling.sdk.examples;
  16. /**
  17. * A registry of modeling REST endpoints
  18. *
  19. */
  20. public class ModelingRESTEndpoints {
  21. public static final String datasourcesURL = "api/v1/datasources/";
  22. public final static String metadataImportTasksURL = "api/v1/datasources/import/tasks/";
  23. public final static String modulesURL = "api/v1/modules";
  24. public final static String fileImportTasksURL = "api/v1/files/import/tasks/";
  25. public final static String filesURL = "api/v1/files/import";
  26. public final static String metadataImportURL = "api/v1/datasources/import_metadata";
  27. }