-
Notifications
You must be signed in to change notification settings - Fork 261
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
New connectors and fixes #8133
New connectors and fixes #8133
Conversation
Signed-off-by: Mandy Chessell <[email protected]>
@@ -1557,7 +1559,7 @@ | |||
|
|||
if (actualPropertyValue != null) | |||
{ | |||
longMap.put(mapPropertyName, (Long)actualPropertyValue); | |||
longMap.put(mapPropertyName, Long.parseLong(actualPropertyValue.toString())); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
@@ -590,7 +590,7 @@ | |||
|
|||
if (actualPropertyValue != null) | |||
{ | |||
longMap.put(mapPropertyName, (Long)actualPropertyValue); | |||
longMap.put(mapPropertyName, Long.parseLong(actualPropertyValue.toString())); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
@@ -237,6 +237,7 @@ | |||
* Create a new generic collection. | |||
* | |||
* @param serverName name of called server. | |||
* @param optionalClassificationName name of collection classification |
Check notice
Code scanning / CodeQL
Spurious Javadoc @param tags Note
* @return Date object | ||
* @throws FileException problem accessing the file | ||
*/ | ||
public Date getLastAccessDate() throws FileException, FileReadException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
BasicFileStore.getLastAccessDate
* @return Date object | ||
* @throws FileException problem accessing the file | ||
*/ | ||
public Date getLastUpdateDate() throws FileException, FileReadException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
BasicFileStore.getLastUpdateDate
* @return Date object | ||
* @throws FileException problem accessing the file | ||
*/ | ||
public Date getLastUpdateDate() throws FileException, FileReadException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
BasicFileStore.getLastUpdateDate
* @return Date object | ||
* @throws FileException problem accessing the file | ||
*/ | ||
public Date getCreationDate() throws FileException, FileReadException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
BasicFileStore.getCreationDate
* @return number | ||
* @throws FileException unable to locate the file | ||
*/ | ||
public long getFileLength() throws FileException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
BasicFileStore.getFileLength
* @return file name | ||
* @throws FileException problem accessing the file | ||
*/ | ||
public String getFileName() throws FileException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
Description
Adds a new governance action service to create a markdown version of a survey report.
Related Issue(s)
There is a fix to admin services on querying the topic names for a metadata access store. This fixes a NPE.
Testing
FVT
Release Notes & Documentation
No changes to the docs
Additional notes