int |
ApplicationVersion.compareTo(ApplicationVersion o) |
|
byte[] |
ApplicationStore.get(DeploymentId deploymentId,
ApplicationVersion applicationVersion) |
Returns the tenant application package of the given version.
|
byte[] |
ApplicationStore.getTester(com.yahoo.config.provision.TenantName tenant,
com.yahoo.config.provision.ApplicationName application,
ApplicationVersion applicationVersion) |
Returns the tester application package of the given version.
|
boolean |
ApplicationStore.prune(com.yahoo.config.provision.TenantName tenant,
com.yahoo.config.provision.ApplicationName application,
ApplicationVersion olderThanVersion) |
Removes applications older than the given version, for the given application, and returns whether something was removed.
|
boolean |
ApplicationStore.pruneTesters(com.yahoo.config.provision.TenantName tenant,
com.yahoo.config.provision.ApplicationName application,
ApplicationVersion olderThanVersion) |
Removes tester packages older than the given version, for the given tester, and returns whether something was removed.
|
void |
ApplicationStore.put(com.yahoo.config.provision.TenantName tenant,
com.yahoo.config.provision.ApplicationName application,
ApplicationVersion applicationVersion,
byte[] applicationPackage,
byte[] diff) |
Stores the given tenant application package of the given version and diff since previous version.
|
void |
ApplicationStore.putDev(DeploymentId deploymentId,
ApplicationVersion version,
byte[] applicationPackage,
byte[] diff) |
Stores the given application package as the development package for the given deployment and version and diff since previous version.
|
void |
ApplicationStore.putTester(com.yahoo.config.provision.TenantName tenant,
com.yahoo.config.provision.ApplicationName application,
ApplicationVersion applicationVersion,
byte[] testerPackage) |
Stores the given tester application package of the given version.
|