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

com.evrythng.thng.resource.model.store.FragmentedShortIdTemplate Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (c) Copyright 2015 EVRYTHNG Ltd London / Zurich
 * www.evrythng.com
 */

package com.evrythng.thng.resource.model.store;

public abstract class FragmentedShortIdTemplate extends ShortIdTemplate {

	private String prefix;
	public static final String PREFIX = "prefix";
	private String suffix;
	public static final String SUFFIX = "suffix";
	private String separator;
	public static final String SEPARATOR = "separator";

	public String getPrefix() {

		return prefix;
	}

	public void setPrefix(final String prefix) {

		this.prefix = prefix;
	}

	public String getSuffix() {

		return suffix;
	}

	public void setSuffix(final String suffix) {

		this.suffix = suffix;
	}

	public String getSeparator() {

		return separator;
	}

	public void setSeparator(final String separator) {

		this.separator = separator;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy