All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liberologico.cloudesire.common.DockerConstants Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
package com.liberologico.cloudesire.common;

public final class DockerConstants
{
    public static final String SCHEMA = "docker://";
    public static final String VALID = "^" + SCHEMA + "[^:]+(:.+)?$";
    public static final String MISSING_VERSION = "^" + SCHEMA + "[^:]+[^:.+]$";

    private DockerConstants()
    {
        throw new AssertionError();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy