📄 storedescription.java
字号:
/*
* Copyright 2004-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.catalina.storeconfig;
import java.util.ArrayList;
import java.util.List;
/**
* Bean of a StoreDescription
* @author Peter Rossbach
*
* <pre>
*
* <Description
* tag="Context"
* standard="true"
* default="true"
* externalAllowed="true"
* storeSeparate="true"
* backup="true"
* childs="true"
* tagClass="org.apache.catalina.core.StandardContext"
* storeFactoryClass="org.apache.catalina.storeconfig.StandardContextSF"
* storeAppenderClass="org.apache.catalina.storeconfig.StoreContextAppender">
* <TransientAttribute>available</TransientAttribute>
* <TransientAttribute>configFile</TransientAttribute>
* <TransientAttribute>configured</TransientAttribute>
* <TransientAttribute>displayName</TransientAttribute>
* <TransientAttribute>distributable</TransientAttribute>
* <TransientAttribute>domain</TransientAttribute>
* <TransientAttribute>engineName</TransientAttribute>
* <TransientAttribute>name</TransientAttribute>
* <TransientAttribute>publicId</TransientAttribute>
* <TransientAttribute>replaceWelcomeFiles</TransientAttribute>
* <TransientAttribute>saveConfig</TransientAttribute>
* <TransientAttribute>sessionTimeout</TransientAttribute>
* <TransientAttribute>startupTime</TransientAttribute>
* <TransientAttribute>tldScanTime</TransientAttribute>
* </Description>
*
*
* </pre>
*/
public class StoreDescription {
private String id;
private String tag;
private String tagClass;
private boolean standard = false;
private boolean backup = false;
private boolean externalAllowed = false;
private boolean myDefault = false;
private boolean attributes = true;
private String storeFactoryClass;
private IStoreFactory storeFactory;
private String storeWriterClass;
private boolean childs = false;
private List transientAttributes;
private List transientChilds;
private boolean storeSeparate = false;
/**
* @return Returns the external.
*/
public boolean isExternalAllowed() {
return externalAllowed;
}
/**
* @param external
* The external to set.
*/
public void setExternalAllowed(boolean external) {
this.externalAllowed = external;
}
/**
* @return Returns the standard.
*/
public boolean isStandard() {
return standard;
}
/**
* @param standard
* The standard to set.
*/
public void setStandard(boolean standard) {
this.standard = standard;
}
/**
* @return Returns the backup.
*/
public boolean isBackup() {
return backup;
}
/**
* @param backup
* The backup to set.
*/
public void setBackup(boolean backup) {
this.backup = backup;
}
/**
* @return Returns the myDefault.
*/
public boolean isDefault() {
return myDefault;
}
/**
* @param aDefault
* The myDefault to set.
*/
public void setDefault(boolean aDefault) {
this.myDefault = aDefault;
}
/**
* @return Returns the storeFactory.
*/
public String getStoreFactoryClass() {
return storeFactoryClass;
}
/**
* @param storeFactoryClass
* The storeFactory to set.
*/
public void setStoreFactoryClass(String storeFactoryClass) {
this.storeFactoryClass = storeFactoryClass;
}
/**
* @return Returns the storeFactory.
*/
public IStoreFactory getStoreFactory() {
return storeFactory;
}
/**
* @param storeFactory
* The storeFactory to set.
*/
public void setStoreFactory(IStoreFactory storeFactory) {
this.storeFactory = storeFactory;
}
/**
* @return Returns the storeWriterClass.
*/
public String getStoreWriterClass() {
return storeWriterClass;
}
/**
* @param storeWriterClass
* The storeWriterClass to set.
*/
public void setStoreWriterClass(String storeWriterClass) {
this.storeWriterClass = storeWriterClass;
}
/**
* @return Returns the tagClass.
*/
public String getTag() {
return tag;
}
/**
* @param tag
* The tag to set.
*/
public void setTag(String tag) {
this.tag = tag;
}
/**
* @return Returns the tagClass.
*/
public String getTagClass() {
return tagClass;
}
/**
* @param tagClass
* The tagClass to set.
*/
public void setTagClass(String tagClass) {
this.tagClass = tagClass;
}
/**
* @return Returns the transientAttributes.
*/
public List getTransientAttributes() {
return transientAttributes;
}
/**
* @param transientAttributes
* The transientAttributes to set.
*/
public void setTransientAttributes(List transientAttributes) {
this.transientAttributes = transientAttributes;
}
public void addTransientAttribute(String attribute) {
if (transientAttributes == null)
transientAttributes = new ArrayList();
transientAttributes.add(attribute);
}
public void removeTransientAttribute(String attribute) {
if (transientAttributes != null)
transientAttributes.remove(attribute);
}
/**
* @return Returns the transientChilds.
*/
public List getTransientChilds() {
return transientChilds;
}
/**
* @param transientChilds
* The transientChilds to set.
*/
public void setTransientChilds(List transientChilds) {
this.transientChilds = transientChilds;
}
public void addTransientChild(String classname) {
if (transientChilds == null)
transientChilds = new ArrayList();
transientChilds.add(classname);
}
public void removeTransientChild(String classname) {
if (transientChilds != null)
transientChilds.remove(classname);
}
/**
* is child transient, please don't save this.
*
* @param classname
* @return is classname attribute?
*/
public boolean isTransientChild(String classname) {
if (transientChilds != null)
return transientChilds.contains(classname);
return false;
}
/**
* is attribute transient, please don't save this.
*
* @param attribute
* @return is transient attribute?
*/
public boolean isTransientAttribute(String attribute) {
if (transientAttributes != null)
return transientAttributes.contains(attribute);
return false;
}
/**
* Return the real id or TagClass
*
* @return Returns the id.
*/
public String getId() {
if (id != null)
return id;
else
return getTagClass();
}
/**
* @param id
* The id to set.
*/
public void setId(String id) {
this.id = id;
}
/**
* @return Returns the attributes.
*/
public boolean isAttributes() {
return attributes;
}
/**
* @param attributes
* The attributes to set.
*/
public void setAttributes(boolean attributes) {
this.attributes = attributes;
}
/**
* @return True if it's a separate store
*/
public boolean isStoreSeparate() {
return storeSeparate;
}
public void setStoreSeparate(boolean storeSeparate) {
this.storeSeparate = storeSeparate;
}
/**
* @return Returns the childs.
*/
public boolean isChilds() {
return childs;
}
/**
* @param childs
* The childs to set.
*/
public void setChilds(boolean childs) {
this.childs = childs;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -