Class RepositoryConformanceWorkbenchConfig
- java.lang.Object
-
- org.odpi.openmetadata.adminservices.configuration.properties.AdminServicesConfigHeader
-
- org.odpi.openmetadata.adminservices.configuration.properties.RepositoryConformanceWorkbenchConfig
-
- All Implemented Interfaces:
java.io.Serializable
public class RepositoryConformanceWorkbenchConfig extends AdminServicesConfigHeader
RepositoryConformanceWorkbenchConfig provides the config that drives the RepositoryWorkbench within the Open Metadata Conformance Suite.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RepositoryConformanceWorkbenchConfig()
Default constructor does nothing.RepositoryConformanceWorkbenchConfig(RepositoryConformanceWorkbenchConfig template)
Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object objectToCompare)
Validate that an object is equal depending on their stored values.int
getMaxSearchResults()
Return the maximum search results that should processed for testing the search operations of the server under test.java.lang.String
getTutRepositoryServerName()
Return the name of the server that the repository workbench is to test.int
hashCode()
Return a hash code based on the values of this object.void
setMaxSearchResults(int maxSearchResults)
Set up the maximum search results that should be processed for testing the search operations of the server under test.void
setTutRepositoryServerName(java.lang.String tutRepositoryServerName)
Set up the name of the server that the repository workbench is to test.java.lang.String
toString()
Standard toString method.
-
-
-
Constructor Detail
-
RepositoryConformanceWorkbenchConfig
public RepositoryConformanceWorkbenchConfig()
Default constructor does nothing.
-
RepositoryConformanceWorkbenchConfig
public RepositoryConformanceWorkbenchConfig(RepositoryConformanceWorkbenchConfig template)
Copy/clone constructor- Parameters:
template
- object to copy
-
-
Method Detail
-
getTutRepositoryServerName
public java.lang.String getTutRepositoryServerName()
Return the name of the server that the repository workbench is to test.- Returns:
- server name
-
setTutRepositoryServerName
public void setTutRepositoryServerName(java.lang.String tutRepositoryServerName)
Set up the name of the server that the repository workbench is to test.- Parameters:
tutRepositoryServerName
- server name
-
getMaxSearchResults
public int getMaxSearchResults()
Return the maximum search results that should processed for testing the search operations of the server under test.- Returns:
- page size
-
setMaxSearchResults
public void setMaxSearchResults(int maxSearchResults)
Set up the maximum search results that should be processed for testing the search operations of the server under test.- Parameters:
maxSearchResults
- page size
-
toString
public java.lang.String toString()
Standard toString method.- Overrides:
toString
in classjava.lang.Object
- Returns:
- JSON style description of variables.
-
equals
public boolean equals(java.lang.Object objectToCompare)
Validate that an object is equal depending on their stored values.- Overrides:
equals
in classjava.lang.Object
- Parameters:
objectToCompare
- object- Returns:
- boolean result
-
hashCode
public int hashCode()
Return a hash code based on the values of this object.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- in hash code
-
-