Searched defs:domain (Results 1 - 25 of 291) sorted by relevance

1234567891011>>

/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DGetTargetsCommand.java68 Domain domain; field in class:GetTargetsCommand
80 targets = domain.getAllTargets();
82 targets = domain.getAllReferencedTargetsForApplication(appName);
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/tomcat/util/threads/
H A DThreadPoolMX.java74 protected String domain; // not used field in class:ThreadPoolMX
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/cli/
H A DIsAnonymousUserEnabledCommand.java64 Domain domain; field in class:IsAnonymousUserEnabledCommand
71 SecurityUtil su = new SecurityUtil(domain);
H A DPredefinedAuthRealmClassNamesCommand.java65 Domain domain; field in class:PredefinedAuthRealmClassNamesCommand
69 SecurityUtil su = new SecurityUtil(domain);
/glassfish-3.1.2/connectors/admin/src/main/java/org/glassfish/connectors/admin/cli/
H A DDeleteAdminObject.java90 private Domain domain; field in class:DeleteAdminObject
113 if (!isResourceExists(domain.getResources(), jndiName)) {
121 if (domain.getConfigNamed(target)!=null) {
158 Resource resource = domain.getResources().getResourceByName(AdminObjectResource.class, jndiName);
161 }, domain.getResources()) == null) {
H A DDeleteConnectorResource.java90 private Domain domain; field in class:DeleteConnectorResource
113 if (!isResourceExists(domain.getResources(), jndiName)) {
122 if ("domain".equals(target)) {
160 domain.getResources().getResourceByName(ConnectorResource.class, jndiName );
163 }, domain.getResources()) == null) {
H A DDeleteConnectorSecurityMap.java92 private Domain domain; field in class:DeleteConnectorSecurityMap
103 Collection<ConnectorConnectionPool> ccPools = domain.getResources().getResources(ConnectorConnectionPool.class);
H A DDeleteConnectorWorkSecurityMap.java88 private Domain domain; field in class:DeleteConnectorWorkSecurityMap
114 domain.getResources().getResources(WorkSecurityMap.class);
126 }, domain.getResources());
144 for (Resource resource : domain.getResources().getResources()) {
H A DDeleteCustomResource.java85 private Domain domain; field in class:DeleteCustomResource
104 if(domain.getResources().getResourceByName(CustomResource.class, jndiName) == null){
114 if ("domain".equals(target)) {
154 domain.getResources().getResourceByName(CustomResource.class, jndiName);
160 }, domain.getResources());
H A DDeleteJavaMailResource.java90 private Domain domain; field in class:DeleteJavaMailResource
109 if (!isResourceExists(domain.getResources(), jndiName)) {
119 if ("domain".equals(target)) {
157 MailResource resource = (MailResource)domain.getResources().getResourceByName(MailResource.class, jndiName);
160 }, domain.getResources());
H A DDeleteJndiResource.java88 private Domain domain; field in class:DeleteJndiResource
107 if (!isResourceExists(domain.getResources(), jndiName)) {
116 if ("domain".equals(target)) {
157 domain.getResources().getResourceByName(ExternalJndiResource.class, jndiName);
163 }, domain.getResources());
H A DDeleteResourceAdapterConfig.java80 private Domain domain; field in class:DeleteResourceAdapterConfig
99 if(domain.getResources().getResourceByName(ResourceAdapterConfig.class, raName) == null){
111 domain.getResources().getResourceByName(ResourceAdapterConfig.class, raName);
118 }, domain.getResources()) == null) {
H A DFlushConnectionPool.java71 private Domain domain; field in class:FlushConnectionPool
91 Resources resources = domain.getResources();
H A DListAdminObjects.java88 private Domain domain; field in class:ListAdminObjects
104 domain.getResources().getResources(AdminObjectResource.class);
H A DListConnectorConnectionPools.java80 private Domain domain; field in class:ListConnectorConnectionPools
96 Collection<ConnectorConnectionPool> connPools = domain.getResources().getResources(ConnectorConnectionPool.class);
H A DListConnectorResources.java82 private Domain domain; field in class:ListConnectorResources
102 domain.getResources().getResources(ConnectorResource.class);
H A DListConnectorWorkSecurityMaps.java81 Domain domain; field in class:ListConnectorWorkSecurityMaps
96 domain.getResources().getResources(WorkSecurityMap.class);
H A DListCustomResources.java93 private Domain domain; field in class:ListCustomResources
108 domain.getResources().getResources(CustomResource.class);
H A DListJavaMailResources.java91 private Domain domain; field in class:ListJavaMailResources
106 domain.getResources().getResources(MailResource.class);
H A DListJndiResources.java91 private Domain domain; field in class:ListJndiResources
106 domain.getResources().getResources(ExternalJndiResource.class);
H A DListResourceAdapterConfigs.java95 private Domain domain; field in class:ListResourceAdapterConfigs
111 domain.getResources().getResources(ResourceAdapterConfig.class);
H A DUpdateConnectorWorkSecurityMap.java90 Domain domain; field in class:UpdateConnectorWorkSecurityMap
104 if (!WorkSecurityMapHelper.doesResourceAdapterNameExist(raName, domain.getResources())) {
111 if (!WorkSecurityMapHelper.doesMapNameExist(raName, securityMapName, domain.getResources())) {
160 WorkSecurityMap map = WorkSecurityMapHelper.getSecurityMap(securityMapName, raName, domain.getResources());
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DCreateSystemProperties.java72 * Adds or updates one or more system properties of the domain, configuration,
99 Domain domain; field in class:CreateSystemProperties
112 Property domainProp = domain.getProperty("administrative.domain.name");
114 if ("domain".equals(target) || target.equals(domainName)) {
115 spb = domain;
117 spb = domain.getConfigNamed(target);
119 spb = domain.getClusterNamed(target);
122 spb = domain.getServerNamed(target);
128 "Invalid target:{0}. Valid targets types are domain, confi
[all...]
H A DDeleteSsl.java105 Domain domain; field in class:DeleteSsl
H A DListSystemProperties.java68 * Lists the system properties of the domain, configuration, cluster, or server instance
90 Domain domain; field in class:ListSystemProperties
102 Property domainProp = domain.getProperty("administrative.domain.name");
105 if ("domain".equals(target) || target.equals(domainName)) {
106 spb = domain;
108 spb = domain.getConfigNamed(target);
110 spb = domain.getClusterNamed(target);
113 spb = domain.getServerNamed(target);
119 "Invalid target:{0}. Valid targets types are domain, confi
[all...]

Completed in 2621 milliseconds

1234567891011>>