FileDocCategorySizeDatePackage
ManualChangeStatus.javaAPI DocGlassfish v2 API4599Fri May 04 22:33:46 BST 2007com.sun.enterprise.admin.server.core

ManualChangeStatus

public final class ManualChangeStatus extends Object
This class holds the result of Manual change check for 1 instance. It is a simple bean with getter and setter of all files that are used for checking Note: the list of files should be in sync with InstanceEnvironment.java
author
Sridatta
version
1.1

Fields Summary
private boolean
objectFileChanged
private boolean
initFileChanged
private boolean
realmsKeyFileChanged
private boolean
serverXmlFileChanged
private boolean
aclFileChanged
private boolean
mimeFileChanged
private boolean
virtualServerConfFilesChanged
Constructors Summary
Methods Summary
public booleanisAclFileChanged()

        return aclFileChanged;
    
public booleanisChanged()

        /* TOMCAT_BEGIN Ramakanth */
        return (isServerXmlFileChanged() || 
            isRealmsKeyFileChanged());
        /* TOMCAT_END Ramakanth */
    
public booleanisInitFileChanged()

        return initFileChanged;
    
public booleanisMimeFileChanged()

        return mimeFileChanged;
    
public booleanisObjectFileChanged()

    
       
        return objectFileChanged;
    
public booleanisRealmsKeyFileChanged()

        return realmsKeyFileChanged;
    
public booleanisServerXmlFileChanged()

        return serverXmlFileChanged;
    
public booleanisVirtualServerConfFilesChanged()

        return virtualServerConfFilesChanged;
    
public voidsetAclFileChanged(boolean value)

        aclFileChanged = value;
    
public voidsetInitFileChanged(boolean value)

        initFileChanged = value;
    
public voidsetMimeFileChanged(boolean value)

        mimeFileChanged = value;
    
public voidsetObjectFileChanged(boolean value)

        objectFileChanged = value;
    
public voidsetRealmsKeyFileChanged(boolean value)

        realmsKeyFileChanged = value;
    
public voidsetServerXmlFileChanged(boolean value)

        serverXmlFileChanged = value;
    
public voidsetVirtualServerConfFilesChanged(boolean value)

        virtualServerConfFilesChanged = value;
    
public java.lang.StringtoString()

        /* TOMCAT_BEGIN Ramakanth */
        return "ManualChangeStatus:\n" + 
            "\tserverXmlFileChanged = " + serverXmlFileChanged + "\n" + 
            "\trealmsKeyFileChanged = " + realmsKeyFileChanged + "\n";
        /* TOMCAT_END Ramakanth */