udstorage.ionic-for-aws-java-sdk-s3.1.0.0.source-code.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ionic-for-aws-java-sdk-s3 Show documentation
Show all versions of ionic-for-aws-java-sdk-s3 Show documentation
Ionic Protect for AWS S3 Cloud Storage offers a simple way for developers building atop AWS S3’s Java SDK to invoke Ionic’s protection and policy functionality as data moves to and from the cloud storage. This addresses use cases such as migration from on-prem storage solutions, protecting data across multi-region or multi-cloud envrionments, applying granular cryptographic control, and more.
The newest version!
package com.ionic.cloudstorage.awss3;
public final class Version {
private static final String BUILD = "207";
private static final String VERSION = "1.0.0";
private static final String GROUPID = "com.ionic.cloudstorage";
private static final String ARTIFACTID = "ionic-for-aws-java-sdk-s3";
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;
}
}