mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-03 08:21:23 +00:00
21 lines
445 B
Java
21 lines
445 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* Represents the one page of workflow result when listing workflows.
|
|
*/
|
|
class GHWorkflowsPage {
|
|
private int total_count;
|
|
private GHWorkflow[] workflows;
|
|
|
|
public int getTotalCount() {
|
|
return total_count;
|
|
}
|
|
|
|
GHWorkflow[] getWorkflows(GHRepository owner) {
|
|
for (GHWorkflow workflow : workflows) {
|
|
workflow.wrapUp(owner);
|
|
}
|
|
return workflows;
|
|
}
|
|
}
|