1 package civitas.common.mix.capabilitymix;
2
3 import civitas.common.CommonConstants;
4
5 public class GetMixConfirmationMeta implements CommonConstants {
6
7 public String apply(final boolean isVoteMix, final int speakerIndex, final int tellerIndex) {
8 return MIX_CONFIRM_META_PREFIX + (isVoteMix ? MIX_CONFIRM_META_VOTE_REVELATION : MIX_CONFIRM_META_ER_REVELATION)
9 + ":" + speakerIndex + ":" + tellerIndex;
10 }
11 }