summaryrefslogtreecommitdiffstats
blob: 07c1cd768410e4f7ce7159c45c7ced5ab8a1e96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Copyright (c) 2010-2015, Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.disco;

import com.isode.stroke.elements.DiscoInfo;

public interface CapsStorage {
    DiscoInfo getDiscoInfo(final String s);
    void setDiscoInfo(final String s, DiscoInfo d);
}