Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new constants for removing application shared link #153

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public class OrganizationManagementConstants {
public static final String PARENT_ID_FIELD = "parentId";
public static final String ORGANIZATION_NAME_FIELD = "name";
public static final String ORGANIZATION_ID_FIELD = "id";
public static final String ORGANIZATION_ID_PROPERTY = "ORGANIZATION_ID";
public static final String ORGANIZATION_DESCRIPTION_FIELD = "description";
public static final String ORGANIZATION_CREATED_TIME_FIELD = "created";
public static final String ORGANIZATION_LAST_MODIFIED_FIELD = "lastModified";
Expand Down Expand Up @@ -731,7 +732,10 @@ public enum ErrorMessages {
"the organizations' meta attributes."),
ERROR_CODE_ERROR_VALIDATING_ORGANIZATION_LOGIN_HINT_ATTRIBUTE("65140", "Unable to validate the " +
"login hint attribute.", "Server encountered an error while validating the " +
"login hint attribute.");
"login hint attribute."),
ERROR_CODE_ERROR_DELETING_SHARED_APPLICATION_LINK("65141", "Unable to delete the shared " +
"application link", "Server encountered an error while deleting the shared application " +
"links for organization: %s.");

private final String code;
private final String message;
Expand Down
Loading