From a08c81f677247ec9eb7721a86250c663065e9930 Mon Sep 17 00:00:00 2001 From: Matthew Swift <matthew.swift@forgerock.com> Date: Wed, 22 Jun 2016 22:12:03 +0000 Subject: [PATCH] OPENDJ-2871 Add support for sub-resources and inheritance --- opendj-rest2ldap/src/main/resources/org/forgerock/opendj/rest2ldap/rest2ldap.properties | 29 ++++++++++++++++++++++++++++- 1 files changed, 28 insertions(+), 1 deletions(-) diff --git a/opendj-rest2ldap/src/main/resources/org/forgerock/opendj/rest2ldap/rest2ldap.properties b/opendj-rest2ldap/src/main/resources/org/forgerock/opendj/rest2ldap/rest2ldap.properties index bc38afb..befdf97 100644 --- a/opendj-rest2ldap/src/main/resources/org/forgerock/opendj/rest2ldap/rest2ldap.properties +++ b/opendj-rest2ldap/src/main/resources/org/forgerock/opendj/rest2ldap/rest2ldap.properties @@ -97,7 +97,7 @@ ERR_ENCODING_VALUES_FOR_FIELD_52=The request cannot be processed because an error occurred while encoding \ the values for the field '%s': '%s' ERR_UNRECOGNIZED_JSON_VALUE_53=Unrecognized type of JSON value: '%s' -ERR_CLIENT_PROVIDER_RESOURCE_ID_MISSING_54=Resources cannot be created without a client provided resource ID +ERR_CLIENT_PROVIDED_RESOURCE_ID_MISSING_54=Resources cannot be created without a client provided resource ID ERR_NOT_YET_IMPLEMENTED_55=Not yet implemented ERR_ACTION_NOT_SUPPORTED_56=The action '%s' is not supported ERR_PASSWORD_MODIFY_SECURE_CONNECTION_57=Password modify requires a secure connection @@ -109,3 +109,30 @@ A password modify request may contain two string valued fields 'oldPassword' and 'newPassword' ERR_CONFIG_INVALID_TRUST_MANAGER_63=The trust-manager defined in '%s' is invalid: %s ERR_CONFIG_INVALID_KEY_MANAGER_64=The key-manager defined in '%s' is invalid: %s +ERR_MISSING_TYPE_PROPERTY_IN_CREATE_65=The resource cannot be created because it does not contain the \ + type property '%s' +ERR_UNRECOGNIZED_TYPE_IN_CREATE_66=The resource cannot be created because it specified an unrecognized resource \ + type '%s'. Please specify one of the following types: %s +ERR_ABSTRACT_TYPE_IN_CREATE_67=The resource cannot be created because it specified the abstract resource type '%s'. \ + Please specify one of the following non-abstract types: %s +ERR_QUERY_BY_ID_OR_EXPRESSION_NOT_SUPPORTED_68=Queries using _queryId or _queryExpression are not supported. Use \ + _queryFilter instead +ERR_READ_ONLY_ENDPOINT_69=This endpoint is read-only and only supports read and query requests +ERR_UNSUPPORTED_REQUEST_AGAINST_COLLECTION_70=The targeted resource is a resource collection which only \ + supports create and query requests +ERR_UNSUPPORTED_REQUEST_AGAINST_INSTANCE_71=The targeted resource is a resource instance which only supports \ + read, update, delete, patch, and action requests +ERR_UNSUPPORTED_REQUEST_AGAINST_SINGLETON_72=The targeted resource is a resource singleton which only supports \ + read, update, patch, and action requests +ERR_SERVER_PROVIDED_RESOURCE_ID_UNEXPECTED_73=Resources cannot be created with a client provided resource ID. The \ + server will automatically generate a resource ID +ERR_COLLECTION_ACTIONS_NOT_SUPPORTED_74=Collections only support create or query requests +ERR_UNRECOGNIZED_RESOURCE_SUPER_TYPE_75=The resource '%s' has an unrecognized super-type '%s' +ERR_UNRECOGNIZED_SUB_RESOURCE_TYPE_76=The resource '%s' references an unrecognized sub-resource '%s' +ERR_MISSING_REQUIRED_FIELD_77=The create request cannot be processed because it does not include the required field '%s' +ERR_INVALID_ENDPOINTS_DIRECTORY_78=The endpoints configuration directory '%s' either does not exist, is not a \ + directory or cannot be read +ERR_INVALID_ENDPOINT_DIRECTORY_79=The endpoint configuration directory '%s' either does not exist, is not a \ + directory or cannot be read +INFO_REST2LDAP_STARTING_80=Rest2Ldap starting with configuration directory '%s' +INFO_REST2LDAP_CREATING_ENDPOINT_81=Rest2Ldap created endpoint '%s' version %s -- Gitblit v1.10.0