/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
/* @XmlType(name = "", propOrder = {
"jmxConnector",
"dasConfig",
"property"
}) */
/**
* Admin Service exists in every instance. It is the configuration for either
* a normal server, DAS or PE instance
*/
/**
* Gets the value of the type property.
* An instance can either be of type
* das
* das-and-server
* same as das
* server
*
* @return possible object is
* {@link String }
*/
/**
* Sets the value of the type property.
*
* @param value allowed object is
* {@link String }
*/
/**
* Gets the value of the systemJmxConnectorName property.
* The name of the internal jmx connector
*
* @return possible object is
* {@link String }
*/
/**
* Sets the value of the systemJmxConnectorName property.
*
* @param value allowed object is
* {@link String }
*/
/**
* Gets the value of the jmxConnector property.
* The jmx-connector element defines the configuration of a JSR 160
* compliant remote JMX Connector.
* Objects of the following type(s) are allowed in the list
* {@link JmxConnector }
*/
@Element("jmx-connector")
/**
* Gets the value of the dasConfig property.
*
* @return possible object is
* {@link DasConfig }
*/
@Element("das-config")
/**
* Sets the value of the dasConfig property.
*
* @param value allowed object is
* {@link DasConfig }
*/
/**
Properties as per {@link org.jvnet.hk2.config.types.PropertyBag}
*/
@PropertiesDesc(props={})
/** Gets the name of the auth realm to be used for administration. This obsoletes/deprecates the similarly named
* attribute on JmxConnector. Note that this is of essence where admin access is done outside the containers.
* Container managed security is still applicable and is handled via security annotations and deployment
* descriptors of the admin applications (aka admin GUI application, MEjb application).
*
* @return name of the auth realm to be used for admin access
*/
boolean usesFileRealm();
public class Duck {
return connector;
}
}
return null;
}
/** This is the place where the iteration for the {@link AuthRealm} for administration should be carried out
* in server. A convenience method for the same.
*
* @param as AdminService implemented by those who implement the interface (outer interface).
* @return AuthRealm instance for which the name is same as as.getAuthRealmName(), null otherwise.
*/
Config cfg = as.getParent(Config.class); //assumes the structure where <admin-service> resides directly under <config>
return realm;
}
return null;
}
/** Returns true if the classname of associated authrealm is same as fully qualified FileRealm classname.
*
* @param as "This" Admin Service
* @return true if associated authrealm is nonnull and its classname equals "com.sun.enterprise.security.auth.realm.file.FileRealm", false otherwise
*/
boolean usesFR = false;
//Note: This is type unsafe.
if (ar != null && "com.sun.enterprise.security.auth.realm.file.FileRealm".equals(ar.getClassname()))
usesFR = true;
return usesFR;
}
}
}