Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #39. Methods definition was added to Builds.java. #95

Merged
merged 1 commit into from
Jan 31, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/main/java/org/rising/jenkins/Build.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* Copyright (c) 2016, Istomin Andrei
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.rising.jenkins;

/**
* Jenkins' job's build.
*
* @author Andrei Istomin (andrej.istomin.ikeen@gmail.com)
* @version $Id$
* @since 1.0
* @todo: Let's create this interface design and solve Issue #92.
*/
public interface Build extends APIObject {
}
48 changes: 47 additions & 1 deletion src/main/java/org/rising/jenkins/Builds.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,59 @@
*/
package org.rising.jenkins;

import java.util.List;

/**
* Jenkins' job's builds.
*
* @author Andrei Istomin (andrej.istomin.ikeen@gmail.com)
* @version $Id$
* @since 1.0
* @todo: Let's create this interface design and solve Issue #39.
* @todo: Let's create fake implementation of the interface and solve Issue #93.
* @todo: Let's create real implementation of the interface and solve Issue #94.
*/
public interface Builds extends APIObject {

/**
* List all builds.
*
* @return List of the builds.
*/
List<Builds> list();

/**
* Last successful build.
*
* @return Last successful build.
*/
Build lastSuccessful();

/**
* Last failed build.
*
* @return Last failed build.
*/
Build lastFailed();

/**
* Last stable build.
*
* @return Last stable build.
*/
Build lastStable();

/**
* Last unstable build.
*
* @return Last unstable build.
*/
Build lastUnstable();

/**
* Find build by number.
*
* @param number Build's number.
* @return Build.
*/
Build find(String number);
}