rity.ipcs.google.ionicgcs.0.9.1.source-code.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ionicgcs Show documentation
Show all versions of ionicgcs Show documentation
Integration between the Ionic Platform and Google Cloud Storage to leverage the Google CSEK capability with Ionic managed keys, allowing flexible, cross-cloud, and hybrid encryption key management with granular ABAC control over data.
The newest version!
package com.ionicsecurity.ipcs.google;
public final class Version {
private static final String BUILD = "227";
private static final String VERSION = "0.9.1";
private static final String GROUPID = "com.ionicsecurity.ipcs.google";
private static final String ARTIFACTID = "ionicgcs";
public static String getMajorVersion() {
return VERSION.split("\\.")[0];
}
public static String getMinorVersion() {
return VERSION.split("\\.")[1];
}
public static String getPatchVersion() {
return VERSION.split("\\.")[2];
}
public static String getBuild()
{
return BUILD;
}
public static String getGroupId() {
return GROUPID;
}
public static String getArtifactId() {
return ARTIFACTID;
}
public static String getVersion() {
return VERSION;
}
public static String getFullVersion() {
return VERSION + "-" + BUILD;
}
}