Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / tools / admin / VerificationCodeReceiver.java
blobf0b8df0bd67b5936060fbd5ab5acd2f0f0110ac9
1 // Copyright (c) 2011 Google Inc.
3 package com.google.appengine.tools.admin;
4 /**
5 * Verification code receiver.
7 */
8 public interface VerificationCodeReceiver {
9 /** Returns the redirect URI. */
10 String getRedirectUri() throws VerificationCodeReceiverRedirectUriException;
12 /** Waits for a verification code. */
13 String waitForCode();
15 /** Releases any resources and stops any processes started. */
16 void stop() throws VerificationCodeReceiverStopException;