Class CopyFieldId
- java.lang.Object
-
- org.ametys.cms.search.solr.schema.CopyFieldId
-
public class CopyFieldId extends Object
A copy field identifier (source and destination).
-
-
Field Summary
Fields Modifier and Type Field Description protected String_destinationThe copy field destination.protected String_sourceThe copy field source.
-
Constructor Summary
Constructors Constructor Description CopyFieldId(String source, String destination)Build a copy field.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetDestination()Get the copy field destination.StringgetSource()Get the copy field source.inthashCode()voidsetDestination(String destination)Set the copy field destination.voidsetSource(String source)Set the copy field source.StringtoString()
-
-
-
Field Detail
-
_destination
protected String _destination
The copy field destination.
-
-
Constructor Detail
-
CopyFieldId
public CopyFieldId(String source, String destination)
Build a copy field.- Parameters:
source- The copy field source.destination- The copy field destination.
-
-
Method Detail
-
setSource
public void setSource(String source)
Set the copy field source.- Parameters:
source- The copy field source to set.
-
getDestination
public String getDestination()
Get the copy field destination.- Returns:
- The copy field destination.
-
setDestination
public void setDestination(String destination)
Set the copy field destination.- Parameters:
destination- The copy field destination to set.
-
-