Class FileSystemProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetowner.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.assetowner.properties.SoftwareCapabilityProperties
-
- org.odpi.openmetadata.accessservices.assetowner.properties.FileSystemProperties
-
- All Implemented Interfaces:
Serializable
public class FileSystemProperties extends SoftwareCapabilityProperties
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.
-
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).StringgetFileSystemType()Return the type of the file system.StringgetFormat()Return the format of the file system.StringgetPatchLevel()Return the patch level of the file system.StringgetSource()Return the source of the file system.StringgetVersion()Return the version number 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).voidsetFileSystemType(String type)Set up the type of the file system.voidsetFormat(String format)Set up the format of the file system.voidsetPatchLevel(String patchLevel)Set up the patch level of the file system.voidsetSource(String source)Set up the source of the file system.voidsetVersion(String version)Set up the version number of the file system.StringtoString()JSON-style toString-
Methods inherited from class org.odpi.openmetadata.accessservices.assetowner.properties.SoftwareCapabilityProperties
getDescription, getDisplayName, getTypeDescription, setDescription, setDisplayName, setTypeDescription
-
Methods inherited from class org.odpi.openmetadata.accessservices.assetowner.properties.ReferenceableProperties
getAdditionalProperties, getExtendedProperties, getQualifiedName, getTypeName, setAdditionalProperties, setExtendedProperties, setQualifiedName, setTypeName
-
-
-
-
Constructor Detail
-
FileSystemProperties
public FileSystemProperties()
Default constructor
-
FileSystemProperties
public FileSystemProperties(FileSystemProperties template)
Copy/clone constructor.- Parameters:
template- object to copy
-
-
Method Detail
-
getFileSystemType
public String getFileSystemType()
Return the type of the file system.- Returns:
- string name
-
setFileSystemType
public void setFileSystemType(String type)
Set up the type of the file system.- Parameters:
type- string name
-
getVersion
public String getVersion()
Return the version number of the file system.- Overrides:
getVersionin classSoftwareCapabilityProperties- Returns:
- string version identifier
-
setVersion
public void setVersion(String version)
Set up the version number of the file system.- Overrides:
setVersionin classSoftwareCapabilityProperties- Parameters:
version- string version identifier
-
getPatchLevel
public String getPatchLevel()
Return the patch level of the file system.- Overrides:
getPatchLevelin classSoftwareCapabilityProperties- Returns:
- string version identifier
-
setPatchLevel
public void setPatchLevel(String patchLevel)
Set up the patch level of the file system.- Overrides:
setPatchLevelin classSoftwareCapabilityProperties- Parameters:
patchLevel- string version identifier
-
getSource
public String getSource()
Return the source of the file system.- Overrides:
getSourcein classSoftwareCapabilityProperties- Returns:
- string name
-
setSource
public void setSource(String source)
Set up the source of the file system.- Overrides:
setSourcein classSoftwareCapabilityProperties- Parameters:
source- string name
-
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 classSoftwareCapabilityProperties- 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 classSoftwareCapabilityProperties- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classSoftwareCapabilityProperties- Returns:
- int hash code
-
-