Class FileTransformation
- java.lang.Object
-
- lumis.portal.structure.sync.model.serviceinstance.FileTransformation
-
- All Implemented Interfaces:
ICustomEquivalence
public class FileTransformation extends Object implements ICustomEquivalence
Model forFileTransformation
.- Since:
- 6.2.0
- Version:
- $Revision: 20509 $ $Date: 2017-09-11 16:18:14 -0300 (Mon, 11 Sep 2017) $
-
-
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 String
getId()
Returns the identifier.String
getName()
Returns the name.Set<FileTransformationParameter>
getTransformationParameters()
Returns thetransformation parameters
.boolean
isEquivalent(Object obj)
Returns whether this object is equivalent to the given object.void
setId(String id)
Sets the identifier.
-
-
-
Method Detail
-
setId
public void setId(String id)
Sets the identifier.- Parameters:
id
- the identifier.- Since:
- 6.2.0
-
getId
public String getId()
Returns the identifier.- Returns:
- the identifier.
- Since:
- 6.2.0
-
getName
public String getName()
Returns the name.- Returns:
- the name.
- Since:
- 6.2.0
-
getTransformationParameters
public Set<FileTransformationParameter> getTransformationParameters()
Returns thetransformation parameters
.- Returns:
- the
transformation parameters
. - Since:
- 6.2.0
-
isEquivalent
public boolean isEquivalent(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.
-
-