12345678910111213141516171819202122232425262728293031 |
- /***************************************************************************************
- * IBM Confidential
- *
- * OCO Source Materials
- *
- * IBM Cognos Products: Moser
- *
- * (C) Copyright IBM Corp. 2020
- *
- * The source code for this program is not published or otherwise
- * divested of its trade secrets, irrespective of what has been
- * deposited with the U.S. Copyright Office.
- *
- ***************************************************************************************/
- package com.ibm.bi.platform.modeling.sdk.examples;
- /**
- * A registry of modeling REST endpoints
- *
- */
- public class ModelingRESTEndpoints {
-
- public static final String datasourcesURL = "api/v1/datasources/";
- public final static String metadataImportTasksURL = "api/v1/datasources/import/tasks/";
- public final static String modulesURL = "api/v1/modules";
- public final static String fileImportTasksURL = "api/v1/files/import/tasks/";
- public final static String filesURL = "api/v1/files/import";
- public final static String metadataImportURL = "api/v1/datasources/import_metadata";
-
- }
|