use of com.srotya.sidewinder.core.rpc.Tag in project sidewinder by srotya.
the class MiscUtils method tagsToString.
public static String tagsToString(List<Tag> tags) {
StringBuilder builder = new StringBuilder();
for (Tag tag : tags) {
builder.append("/");
builder.append(tag.getTagKey() + "=" + tag.getTagValue());
}
return builder.toString();
}
Aggregations