com.marvelution.hudson.plugins.apiv2.cache.activity.BuildActivityCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hudson-apiv2-plugin Show documentation
Show all versions of hudson-apiv2-plugin Show documentation
This plugin features a Wink REST API application.
The newest version!
/*
* Licensed to Marvelution under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Marvelution licenses this file to you 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 com.marvelution.hudson.plugins.apiv2.cache.activity;
import org.apache.commons.lang.builder.HashCodeBuilder;
/**
* The Build Activity Cache object
*
* @author Mark Rekveld
*
* @since 4.4.0
*/
public class BuildActivityCache extends JobActivityCache {
private final int build;
/**
* Constructor
*
* @param timestamp
* @param job
* @param build
*/
public BuildActivityCache(long timestamp, String job, int build) {
super(timestamp, job);
this.build = build;
}
/**
* Getter for build
*
* @return the build
*/
public int getBuild() {
return build;
}
/**
* {@inheritDoc}
*/
@Override
public boolean isTheSame(ActivityCache activity) {
if (activity != null && activity instanceof BuildActivityCache) {
return (super.isTheSame(activity) && getBuild() == ((BuildActivityCache) activity).getBuild());
}
return false;
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return super.toString() + " #" + getBuild();
}
}