forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
114 lines (21 loc) · 952 Bytes
/
Copy pathConstants.java
File metadata and controls
114 lines (21 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.microsoft.graph.info;
/** Multi-purpose constants holder used accross the SDK */
public final class Constants {
private Constants() {
}
// Constants for functional tests
// TO-DO: document how to register an application for functional
// testing purposes
/** The application ID to use for unit testing */
public static final String APPID = "app-id";
/** The user email to use for unit testing */
public static final String USERNAME = "user@email.com";
/** The user password to use for unit testing */
public static final String PASSWORD = "password";
/** The tenant ID to use for unit testing */
public static final String TENANTID = "tenantid";
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
public static final String VERSION_NAME = "5.79.0";
}