com.dubture.getcomposer.core.objects.Distribution Maven / Gradle / Ivy
package com.dubture.getcomposer.core.objects;
/**
* Represents a dist
entity in a package
*
* @see http://getcomposer.org/doc/05-repositories.md#package-2
* @author Thomas Gossmann
*
*/
public class Distribution extends Storage {
/**
* Returns the shasum
property.
*
* @return the shasum
value
*/
public String getShaSum() {
return getAsString("shasum");
}
/**
* Sets the shasum
property.
*
* @param type the new shasum
value
*/
public void setShaSum(String shaSum) {
set("shasum", shaSum);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy