273
|
1 /*
|
|
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
|
|
3 * Please refer to the LICENSE.txt for licensing details.
|
|
4 */
|
|
5 package ch.ethz.ssh2.auth;
|
|
6
|
|
7 import java.util.Collection;
|
|
8
|
|
9 public interface AgentProxy {
|
|
10 public Collection<AgentIdentity> getIdentities();
|
|
11 }
|