![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.FragmentedShortIdTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (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