com.sun.enterprise.config.serverbeans.AdminService Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.enterprise.config.serverbeans;
import java.beans.PropertyVetoException;
import java.util.List;
import org.glassfish.api.admin.config.PropertiesDesc;
import org.jvnet.hk2.config.types.Property;
import org.jvnet.hk2.config.types.PropertyBag;
import org.glassfish.quality.ToDo;
import org.jvnet.hk2.config.*;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Pattern;
/* @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
*/
@Configured
public interface AdminService extends ConfigBeanProxy, PropertyBag {
/**
* Gets the value of the type property. An instance can either be of type das Domain Administration Server in SE/EE or
* the PE instance das-and-server same as das server Any non-DAS instance in SE/EE. Not valid for PE.
*
* @return possible object is {@link String }
*/
@Attribute(defaultValue = "server")
@Pattern(regexp = "(das|das-and-server|server)")
String getType();
/**
* Sets the value of the type property.
*
* @param value allowed object is {@link String }
*/
void setType(String value) throws PropertyVetoException;
/**
* Gets the value of the systemJmxConnectorName property. The name of the internal jmx connector
*
* @return possible object is {@link String }
*/
@Attribute
String getSystemJmxConnectorName();
/**
* Sets the value of the systemJmxConnectorName property.
*
* @param value allowed object is {@link String }
*/
void setSystemJmxConnectorName(String value) throws PropertyVetoException;
/**
* 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")
List getJmxConnector();
/**
* Gets the value of the dasConfig property.
*
* @return possible object is {@link DasConfig }
*/
@Element("das-config")
@NotNull
DasConfig getDasConfig();
/**
* Sets the value of the dasConfig property.
*
* @param value allowed object is {@link DasConfig }
*/
void setDasConfig(DasConfig value) throws PropertyVetoException;
/**
* Properties as per {@link org.jvnet.hk2.config.types.PropertyBag}
*/
@ToDo(priority = ToDo.Priority.IMPORTANT, details = "Provide PropertyDesc for legal props")
@PropertiesDesc(props = {})
@Element
List getProperty();
/**
* 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
*/
@Attribute(defaultValue = "admin-realm")
@NotNull
String getAuthRealmName();
void setAuthRealmName(String name);
@DuckTyped
JmxConnector getSystemJmxConnector();
@DuckTyped
AuthRealm getAssociatedAuthRealm();
@DuckTyped
boolean usesFileRealm();
public class Duck {
public static JmxConnector getSystemJmxConnector(AdminService as) {
List connectors = as.getJmxConnector();
for (JmxConnector connector : connectors) {
if (as.getSystemJmxConnectorName().equals(connector.getName())) {
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.
*/
public static AuthRealm getAssociatedAuthRealm(AdminService as) {
String rn = as.getAuthRealmName(); //this is the name of admin-service@auth-realm-name
Config cfg = as.getParent(Config.class); //assumes the structure where resides directly under
SecurityService ss = cfg.getSecurityService();
List realms = ss.getAuthRealm();
for (AuthRealm realm : realms) {
if (rn.equals(realm.getName()))
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
*/
public static boolean usesFileRealm(AdminService as) {
boolean usesFR = false;
AuthRealm ar = as.getAssociatedAuthRealm();
//Note: This is type unsafe.
if (ar != null && "com.sun.enterprise.security.auth.realm.file.FileRealm".equals(ar.getClassname()))
usesFR = true;
return usesFR;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy