Class Changed
- java.lang.Object
-
- nl.gx.webmanager.services.contentrepresentation.difference.Difference
-
- nl.gx.webmanager.services.contentrepresentation.difference.Changed
-
public class Changed extends Difference
Holds a list of changes between two versions of the same object.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(DifferenceEntry entry)
List<DifferenceEntry>
getEntries()
String
getFirstContentType()
The content type of the first content representation.Set<String>
getFirstInterfaceNames()
The interface names of the first content representation.WmId
getFirstWmId()
The wmId the first content representation.String
getSecondContentType()
The content type of the second content representation.Set<String>
getSecondInterfaceNames()
The interface names of the second content representation.WmId
getSecondWmId()
The wmId the second content representation.
-
-
-
Method Detail
-
add
public void add(DifferenceEntry entry)
-
getEntries
public List<DifferenceEntry> getEntries()
-
getFirstContentType
public String getFirstContentType()
The content type of the first content representation.- Returns:
- Content type string.
- See Also:
ContentRepresentation.getContentType()
-
getSecondContentType
public String getSecondContentType()
The content type of the second content representation.- Returns:
- Content type string.
- See Also:
ContentRepresentation.getContentType()
-
getFirstWmId
public WmId getFirstWmId()
The wmId the first content representation.- Returns:
- wmId.
- See Also:
ContentRepresentation.getWmId()
-
getSecondWmId
public WmId getSecondWmId()
The wmId the second content representation.- Returns:
- wmId.
- See Also:
ContentRepresentation.getWmId()
-
getFirstInterfaceNames
public Set<String> getFirstInterfaceNames()
The interface names of the first content representation.- Returns:
- interface names.
- See Also:
ContentRepresentation.getInterfaceNames()
-
getSecondInterfaceNames
public Set<String> getSecondInterfaceNames()
The interface names of the second content representation.- Returns:
- interface names.
- See Also:
ContentRepresentation.getInterfaceNames()
-
-