Class NativeLinkTypeChange
- java.lang.Object
-
- com.sodius.oslc.server.process.scheme.NativeLinkTypeChange
-
public class NativeLinkTypeChange extends Object
A native link type change.- Since:
- 3.9.0
-
-
Constructor Summary
Constructors Constructor Description NativeLinkTypeChange(String nativeLinkType, URI previousLinkType, URI currentLinkType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<URI>
getCurrentLinkType()
Gets the current link type, if any.String
getNativeLinkType()
Gets the native link type identifier.Optional<URI>
getPreviousLinkType()
Gets the previous link type, if any.
-
-
-
Method Detail
-
getNativeLinkType
public String getNativeLinkType()
Gets the native link type identifier.- Returns:
- the native link type identifier.
-
getPreviousLinkType
public Optional<URI> getPreviousLinkType()
Gets the previous link type, if any.- Returns:
- an empty
Optional
if no previous link type exists; its contained reference otherwise.
-
-