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

io.sphere.sdk.categories.LocaleSlugPair Maven / Gradle / Ivy

There is a newer version: 1.0.0-M3
Show newest version
package io.sphere.sdk.categories;

import org.apache.commons.lang3.tuple.MutablePair;

import java.util.Locale;

class LocaleSlugPair extends MutablePair {
    private static final long serialVersionUID = 4954918890077093865L;

    public LocaleSlugPair(final Locale left, final String right) {
        super(left, right);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy