com.capitalone.dashboard.service.BuildCommonService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.service;
import com.capitalone.dashboard.model.Build;
import org.bson.types.ObjectId;
public interface BuildCommonService {
/**
* Fetches a build.
*
* @param id build unique identifier
* @return Build instance
*/
Build get(ObjectId id);
/**
* Fetches a build.
*
* @param buildUrl build url
* @return Build instance
*/
Build get(String buildUrl);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy