Class NewFileSystemRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetowner.rest.AssetOwnerOMASAPIRequestBody
-
- org.odpi.openmetadata.accessservices.assetowner.rest.NewFileSystemRequestBody
-
- All Implemented Interfaces:
Serializable
public class NewFileSystemRequestBody extends AssetOwnerOMASAPIRequestBody
NewFileSystemProperties describes the root node of a file system.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NewFileSystemRequestBody()Default constructorNewFileSystemRequestBody(NewFileSystemRequestBody 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.Map<String,String>getAdditionalProperties()Return a copy of the additional properties.StringgetDescription()Return the description of the file.StringgetDisplayName()Return the display name of the fileStringgetEncryption()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.StringgetUniqueName()Return the full path of the file - this should be unique.StringgetVersion()Return the version number of the file system.inthashCode()Return hash code for this objectvoidsetAdditionalProperties(Map<String,String> additionalProperties)Set up additional properties.voidsetDescription(String description)Set up the description of the file.voidsetDisplayName(String displayName)Set up the display name of the file.voidsetEncryption(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.voidsetUniqueName(String uniqueName)Set up the full path of the file - this should be unique.voidsetVersion(String version)Set up the version number of the file system.StringtoString()JSON-style toString
-
-
-
Constructor Detail
-
NewFileSystemRequestBody
public NewFileSystemRequestBody()
Default constructor
-
NewFileSystemRequestBody
public NewFileSystemRequestBody(NewFileSystemRequestBody template)
Copy/clone constructor.- Parameters:
template- object to copy
-
-
Method Detail
-
getDisplayName
public String getDisplayName()
Return the display name of the file- Returns:
- string name
-
setDisplayName
public void setDisplayName(String displayName)
Set up the display name of the file.- Parameters:
displayName- string name
-
getDescription
public String getDescription()
Return the description of the file.- Returns:
- string description
-
setDescription
public void setDescription(String description)
Set up the description of the file.- Parameters:
description- string description
-
getUniqueName
public String getUniqueName()
Return the full path of the file - this should be unique.- Returns:
- string name
-
setUniqueName
public void setUniqueName(String uniqueName)
Set up the full path of the file - this should be unique.- Parameters:
uniqueName- string name
-
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- stirng name
-
getVersion
public String getVersion()
Return the version number of the file system.- Returns:
- string version identifier
-
setVersion
public void setVersion(String version)
Set up the version number of the file system.- Parameters:
version- string version identifier
-
getPatchLevel
public String getPatchLevel()
Return the patch level of the file system.- Returns:
- string version identifier
-
setPatchLevel
public void setPatchLevel(String patchLevel)
Set up the patch level of the file system.- Parameters:
patchLevel- string version identifier
-
getSource
public String getSource()
Return the source of the file system.- Returns:
- string name
-
setSource
public void setSource(String source)
Set up the source of the file system.- 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
-
getAdditionalProperties
public Map<String,String> getAdditionalProperties()
Return a copy of the additional properties. Null means no additional properties are available.- Returns:
- AdditionalProperties
-
setAdditionalProperties
public void setAdditionalProperties(Map<String,String> additionalProperties)
Set up additional properties.- Parameters:
additionalProperties- Additional properties object
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classAssetOwnerOMASAPIRequestBody- 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.
-
-