FileDocCategorySizeDatePackage
Scope.javaAPI DocApache Axis 1.43141Sat Apr 22 18:57:28 BST 2006org.apache.axis.constants

Scope

public class Scope extends Enum
author
rsitze

Fields Summary
private static final Type
type
public static final String
REQUEST_STR
public static final String
APPLICATION_STR
public static final String
SESSION_STR
public static final String
FACTORY_STR
public static final Scope
REQUEST
public static final Scope
APPLICATION
public static final Scope
SESSION
public static final Scope
FACTORY
public static final Scope
DEFAULT
Constructors Summary
protected Scope()

        super(type, DEFAULT.getValue(), DEFAULT.getName());
    
private Scope(int value, String name)

        super(type, value, name);
    
Methods Summary
public static org.apache.axis.constants.ScopegetDefault()


      type.setDefault(DEFAULT);  return (Scope)type.getDefault(); 
public static final org.apache.axis.constants.ScopegetScope(int scope)

        return type.getScope(scope);
    
public static final org.apache.axis.constants.ScopegetScope(java.lang.String scope)

        return type.getScope(scope);
    
public static final org.apache.axis.constants.ScopegetScope(java.lang.String scope, org.apache.axis.constants.Scope dephault)

        return type.getScope(scope, dephault);
    
public static final java.lang.String[]getScopes()

        return type.getEnumNames();
    
public static final booleanisValid(java.lang.String scope)

        return type.isValid(scope);
    
private java.lang.ObjectreadResolve()

        return type.getScope(value);
    
public static final intsize()

        return type.size();