App Engine Java SDK version 1.7.0
[gae.git] / java / src / main / com / google / appengine / tools / admin / UpdateSuccessEvent.java
blobb273d637ea83b37420cbbc617e000732013a7a22
1 // Copyright 2008 Google Inc. All Rights Reserved.
3 package com.google.appengine.tools.admin;
5 /**
6 * Received by an {@link com.google.appengine.tools.admin.UpdateListener}.
7 * This event indicates that the operation was
8 * successfully completed.
11 public class UpdateSuccessEvent {
12 private final String details;
14 public UpdateSuccessEvent(String details) {
15 this.details = details;
18 /**
19 * Returns the detailed output from the operation process.
21 public String getDetails() {
22 return details;