View Javadoc
1   package com.atlassian.streams.refapp;
2   
3   import com.atlassian.streams.spi.StreamsKeyProvider;
4   import com.google.common.collect.ImmutableList;
5   
6   public class RefappKeyProvider implements StreamsKeyProvider {
7   
8       public static final String REFAPP_KEY = "REFAPP";
9   
10      @Override
11      public Iterable<StreamsKey> getKeys() {
12          return ImmutableList.of(new StreamsKey(REFAPP_KEY, "Reference App"));
13      }
14  }
15