Class FileTransformation
- java.lang.Object
-
- lumis.portal.structure.sync.model.serviceinstance.FileTransformation
-
- All Implemented Interfaces:
ICustomEquivalence
public class FileTransformation extends java.lang.Object implements ICustomEquivalence
Model forFileTransformation
.- Since:
- 6.2.0
- Version:
- $Revision: 25303 $ $Date: 2022-10-22 22:48:02 -0300 (Sat, 22 Oct 2022) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FileTransformation.FileTransformationComparator
Comparator forFileTransformation
.
-
Constructor Summary
Constructors Constructor Description FileTransformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getId()
Returns the identifier.java.lang.String
getName()
Returns the name.java.util.Set<FileTransformationParameter>
getTransformationParameters()
Returns thetransformation parameters
.boolean
isEquivalent(java.lang.Object obj)
Returns whether this object is equivalent to the given object.void
setId(java.lang.String id)
Sets the identifier.
-
-
-
Method Detail
-
setId
public void setId(java.lang.String id)
Sets the identifier.- Parameters:
id
- the identifier.- Since:
- 6.2.0
-
getId
public java.lang.String getId()
Returns the identifier.- Returns:
- the identifier.
- Since:
- 6.2.0
-
getName
public java.lang.String getName()
Returns the name.- Returns:
- the name.
- Since:
- 6.2.0
-
getTransformationParameters
public java.util.Set<FileTransformationParameter> getTransformationParameters()
Returns thetransformation parameters
.- Returns:
- the
transformation parameters
. - Since:
- 6.2.0
-
isEquivalent
public boolean isEquivalent(java.lang.Object obj)
Description copied from interface:ICustomEquivalence
Returns whether this object is equivalent to the given object. If the object is equivalent, it will not need to be updated during synchronization.- Specified by:
isEquivalent
in interfaceICustomEquivalence
- Parameters:
obj
- the object to compare with.- Returns:
- true if the objects are equivalent, false otherwise.
-
-