Package org.kohsuke.github
Class GHDeploymentStatus
- java.lang.Object
-
- org.kohsuke.github.GHObject
-
- org.kohsuke.github.GHDeploymentStatus
-
public class GHDeploymentStatus extends GHObject
The type GHDeploymentStatus.
-
-
Field Summary
Fields Modifier and Type Field Description protected GHUsercreatorprotected Stringdeployment_urlprotected Stringdescriptionprotected Stringrepository_urlprotected Stringstateprotected Stringtarget_url-
Fields inherited from class org.kohsuke.github.GHObject
responseHeaderFields
-
-
Constructor Summary
Constructors Constructor Description GHDeploymentStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description URLgetDeploymentUrl()Gets deployment url.URLgetHtmlUrl()Deprecated.This object has no HTML URL.URLgetRepositoryUrl()Gets repository url.GHDeploymentStategetState()Gets state.URLgetTargetUrl()Gets target url.GHDeploymentStatuswrap(GHRepository owner)Wrap gh deployment status.-
Methods inherited from class org.kohsuke.github.GHObject
getCreatedAt, getId, getNodeId, getResponseHeaderFields, getUpdatedAt, getUrl, setResponseHeaderFields, toString
-
-
-
-
Method Detail
-
wrap
public GHDeploymentStatus wrap(GHRepository owner)
Wrap gh deployment status.- Parameters:
owner- the owner- Returns:
- the gh deployment status
-
getTargetUrl
public URL getTargetUrl()
Gets target url.- Returns:
- the target url
-
getDeploymentUrl
public URL getDeploymentUrl()
Gets deployment url.- Returns:
- the deployment url
-
getRepositoryUrl
public URL getRepositoryUrl()
Gets repository url.- Returns:
- the repository url
-
getState
public GHDeploymentState getState()
Gets state.- Returns:
- the state
-
getHtmlUrl
public URL getHtmlUrl()
Deprecated.This object has no HTML URL.Description copied from class:GHObjectGets html url.- Specified by:
getHtmlUrlin classGHObject- Returns:
- URL of this object for humans, which renders some HTML.
-
-