Class FileSystemProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.datamanager.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.datamanager.properties.SoftwareServerCapabilitiesProperties
-
- org.odpi.openmetadata.accessservices.datamanager.properties.FileSystemProperties
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FileSystemRequestBody
public class FileSystemProperties extends SoftwareServerCapabilitiesProperties
FileSystemProperties describes the root node of a file system.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileSystemProperties()Default constructorFileSystemProperties(FileSystemProperties template)Copy/clone constructor.FileSystemProperties(SoftwareServerCapabilitiesProperties template)Copy/clone constructor from OCF bean.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.StringgetEncryption()Return the type of encryption used on the file system (or null is unencrypted).StringgetFormat()Return the format of the file system.inthashCode()Return hash code for this objectvoidsetEncryption(String encryption)Set up the type of encryption used on the file system (or null is unencrypted).voidsetFormat(String format)Set up the format of the file system.StringtoString()JSON-style toString-
Methods inherited from class org.odpi.openmetadata.accessservices.datamanager.properties.SoftwareServerCapabilitiesProperties
getDescription, getDisplayName, getPatchLevel, getSource, getTypeDescription, getVersion, setDescription, setDisplayName, setPatchLevel, setSource, setTypeDescription, setVersion
-
Methods inherited from class org.odpi.openmetadata.accessservices.datamanager.properties.ReferenceableProperties
getAdditionalProperties, getExtendedProperties, getQualifiedName, getTypeName, getVendorProperties, setAdditionalProperties, setExtendedProperties, setQualifiedName, setTypeName, setVendorProperties
-
-
-
-
Constructor Detail
-
FileSystemProperties
public FileSystemProperties()
Default constructor
-
FileSystemProperties
public FileSystemProperties(FileSystemProperties template)
Copy/clone constructor.- Parameters:
template- object to copy
-
FileSystemProperties
public FileSystemProperties(SoftwareServerCapabilitiesProperties template)
Copy/clone constructor from OCF bean.- Parameters:
template- object to copy
-
-
Method Detail
-
getFormat
public String getFormat()
Return the format of the file system.- Returns:
- string name
-
setFormat
public void setFormat(String format)
Set up the format of the file system.- Parameters:
format- string name
-
getEncryption
public String getEncryption()
Return the type of encryption used on the file system (or null is unencrypted).- Returns:
- encryption type
-
setEncryption
public void setEncryption(String encryption)
Set up the type of encryption used on the file system (or null is unencrypted).- Parameters:
encryption- encryption type
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classSoftwareServerCapabilitiesProperties- Returns:
- return string containing the property names and values
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.- Overrides:
equalsin classSoftwareServerCapabilitiesProperties- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classSoftwareServerCapabilitiesProperties- Returns:
- int hash code
-
-