Package com.adobe.cq.launches.api
Class LaunchResourceStatus
- java.lang.Object
-
- com.adobe.cq.launches.api.LaunchResourceStatus
-
public final class LaunchResourceStatus extends Object
Launch status compared to production.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLaunchResourceStatus.LaunchStatusType
-
Constructor Summary
Constructors Constructor Description LaunchResourceStatus(LaunchResourceStatus.LaunchStatusType type, String path, String title, Calendar launchLastModif, Calendar prodLastModif, String launchUserId, String productionUserId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Overridden to alter the preconditions when two launch statuses are considered equal.DategetLaunchModificationDate()StringgetLaunchUserId()DategetProductionModificationDate()StringgetProductionUserId()StringgetResourcePath()StringgetTitle()LaunchResourceStatus.LaunchStatusTypegetType()inthashCode()Returns a hash code value for the object.
-
-
-
Method Detail
-
getType
public LaunchResourceStatus.LaunchStatusType getType()
-
getResourcePath
public String getResourcePath()
-
getTitle
public String getTitle()
-
getLaunchModificationDate
public Date getLaunchModificationDate()
-
getProductionModificationDate
public Date getProductionModificationDate()
-
getLaunchUserId
public String getLaunchUserId()
-
getProductionUserId
public String getProductionUserId()
-
equals
public final boolean equals(Object o)
Overridden to alter the preconditions when two launch statuses are considered equal.
-
hashCode
public int hashCode()
Returns a hash code value for the object. Replaced in order to return the same hashcode for two objects that are considered equal according to theequals(java.lang.Object)method implemented above.- Overrides:
hashCodein classObject- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object),Hashtable
-
-