blob: 51e99b523fe06c4c514143d8f9455f2530c0f97f [file] [log] [blame]
// Copyright 2006 Google Inc. All Rights Reserved.
package com.google.inject;
/**
* Scope constants.
*
* @author crazybob@google.com (Bob Lee)
*/
public class Scopes {
/**
* Default scope's name. One instance per injection.
*/
public static final String DEFAULT = Key.DEFAULT_NAME;
/**
* Singleton scope's name. One instance per {@link Container}.
*/
public static final String SINGLETON = "singleton";
}