Class RelatedAssetReference
- Object
-
- RelatedAssetReference
-
- All Implemented Interfaces:
Serializable
public class RelatedAssetReference extends Object implements Serializable
The properties of the asset related to created issue- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RelatedAssetReference.Builder
-
Constructor Summary
Constructors Constructor Description RelatedAssetReference()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RelatedAssetReference.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
UUID
getAssetId()
The ID of the asset which the issue is related to.Boolean
getDirection()
The direction of the relation where true means the issue is the source and false means the issue is the target.UUID
getRelationTypeId()
The ID of relation type for related asset.int
hashCode()
void
setAssetId(UUID assetId)
The ID of the asset which the issue is related to.void
setDirection(Boolean direction)
The direction of the relation where true means the issue is the source and false means the issue is the target.void
setRelationTypeId(UUID relationTypeId)
The ID of relation type for related asset.String
toString()
-
-
-
Method Detail
-
builder
public static RelatedAssetReference.Builder builder()
-
getAssetId
public UUID getAssetId()
The ID of the asset which the issue is related to.
-
getRelationTypeId
public UUID getRelationTypeId()
The ID of relation type for related asset.
-
getDirection
public Boolean getDirection()
The direction of the relation where true means the issue is the source and false means the issue is the target.
-
setAssetId
public void setAssetId(UUID assetId)
The ID of the asset which the issue is related to.
-
setRelationTypeId
public void setRelationTypeId(UUID relationTypeId)
The ID of relation type for related asset.
-
setDirection
public void setDirection(Boolean direction)
The direction of the relation where true means the issue is the source and false means the issue is the target.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-