"The TypeDef \"{0}\" (guid = {1}) passed on the {2} parameter of the {3} operation is not known to the open metadata repository {4}",
"The system is unable to retrieve the properties for the requested TypeDef because the supplied identifier is not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the typedef has been deleted since the identifier was retrieved."),
"The TypeDef \"{0}\" of category \"{1}\" passed by the {2} operation is not known to the open metadata repository {3}",
"The system is unable to retrieve the properties for the requested TypeDef because the supplied identifier is not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the typedef has been deleted since the identifier was retrieved."),
"The AttributeTypeDef \"{0}\" (guid = {1}) passed on the {2} call is not known to the open metadata repository {3}",
"The system is unable to retrieve the properties for the requested TypeDef because the supplied identifier is not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the typedef has been deleted since the identifier was retrieved."),
"The TypeDef unique identifier {0} passed as parameter {1} on a {2} request to open metadata repository {3} is not known to this repository",
"The system is unable to retrieve the properties for the requested TypeDef because the supplied identifiers are not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the TypeDef has been deleted since the identifier was retrieved."),
"The AttributeTypeDef \"{0}\" (guid {1}) passed on a {2} request to open metadata repository {3} is not known to this repository",
"The system is unable to retrieve the properties for the requested AttributeTypeDef because the supplied identifiers are not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the AttributeTypeDef has been deleted since the identifier was retrieved."),
"The TypeDef unique name {0} passed on a {1} request to open metadata repository {2} is not known to this repository",
"The system is unable to retrieve the properties for the requested TypeDef because the supplied identifiers are not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the TypeDef has been deleted since the identifier was retrieved."),
"The TypeDef unique name {0} passed on a {1} request to open metadata repository {2} is not known to this repository",
"The system is unable to retrieve the properties for the requested TypeDef because the supplied identifiers are not recognized.",
"The identifier is supplied by the caller. It may have a logic problem that has corrupted the identifier, or the TypeDef has been deleted since the identifier was retrieved."),
...
...
@@ -619,7 +623,11 @@ public enum OMRSErrorCode
"An OMRS repository connector {0} has passed an invalid parameter to the repository helper {1} operation as part of the {2} request",
"The open metadata component has called the repository helper operations in the wrong order or has a similar logic error.",
"An OMRS repository connector or access server {0} has passed a null classification to the repository helper {1} operation as part of the {2} request",
"The repository connector has called the repository helper operations in the wrong order or has a similar logic error.",
* The requested guid does not equal the stored one.
*/
log.error("GUID Mismatch in AttributeTypeDef "+typeDefName+" from "+sourceName+" received GUID is "+typeDefGUID+"; stored GUID is "+attributeTypeDef.getGUID());
log.error("GUID Mismatch in AttributeTypeDef "+typeName+" from "+sourceName+" received GUID is "+typeGUID+"; stored GUID is "+attributeTypeDef.getGUID());
returnfalse;
}
...
...
@@ -1264,12 +1485,12 @@ public class OMRSRepositoryContentManager implements OMRSTypeDefEventProcessor,
returntrue;
}
if(!typeDefGUID.equals(typeDef.getGUID()))
if(!typeGUID.equals(typeDef.getGUID()))
{
/*
* The requested guid does not equal the stored one.
*/
log.error("GUID Mismatch in TypeDef "+typeDefName+" from "+sourceName+" received GUID is "+typeDefGUID+"; stored GUID is "+typeDef.getGUID());
log.error("GUID Mismatch in TypeDef "+typeName+" from "+sourceName+" received GUID is "+typeGUID+"; stored GUID is "+typeDef.getGUID());
returnfalse;
}
...
...
@@ -1296,7 +1517,7 @@ public class OMRSRepositoryContentManager implements OMRSTypeDefEventProcessor,