org.apache.openejb.assembler.classic.AppInfo Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.openejb.assembler.classic;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Properties;
import java.util.Set;
import java.util.TreeSet;
/**
* @version $Rev$ $Date$
*/
public class AppInfo extends InfoObject {
public final Properties properties = new Properties();
public String appId;
public String path;
public Set paths = new LinkedHashSet();
public boolean autoDeploy = true;
public boolean delegateFirst = true;
public boolean standaloneModule;
public final List clients = new ArrayList();
public final List ejbJars = new ArrayList();
public final List pojoConfigurations = new ArrayList();
public final List connectors = new ArrayList();
public final List webApps = new ArrayList();
public final List persistenceUnits = new ArrayList();
public List services = new ArrayList();
public final List libs = new ArrayList();
public final Set watchedResources = new TreeSet();
public final Set resourceIds = new TreeSet();
public final Set resourceAliases = new TreeSet();
public final JndiEncInfo globalJndiEnc = new JndiEncInfo();
public final JndiEncInfo appJndiEnc = new JndiEncInfo();
public String cmpMappingsXml;
public final Properties jmx = new Properties();
public final Set mbeans = new TreeSet();
public final Set jaxRsProviders = new TreeSet();
public final Set jsfClasses = new TreeSet();
public final Set eventClassesNeedingAppClassloader = new TreeSet();
public boolean webAppAlone;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy