/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.controller; /** * Holds the possible process types. This is used to identify what type of server we are running in. * {@link Extension}s can use this information to decide whether certain resources, operations or attributes * need to be present. {@link OperationStepHandler}s can use this to determine how to handle operations. */ public enum ProcessType { DOMAIN_SERVER(true, true), EMBEDDED_SERVER(true, false), STANDALONE_SERVER(true, false), HOST_CONTROLLER(false, true), EMBEDDED_HOST_CONTROLLER(false, true), APPLICATION_CLIENT(true, false), SELF_CONTAINED(true,false); private final boolean server; private final boolean domain; ProcessType(final boolean server, final boolean domain) { this.server = server; this.domain = domain; } /** * Returns true if the process is one of the server variants. * * @return Returns <tt>true</tt> if the process is a server. Returns <tt>false</tt> otherwise. */ public boolean isServer() { return server; } /** * Returns true if the process is a managed domain process. * * @return Returns <tt>true</tt> if the process is a managed domain process. Returns <tt>false</tt> otherwise. */ public boolean isManagedDomain() { return domain; } }