/*
* 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.
*/
/**
* The provider-config element defines the configuration of an authentication
* provider
*
* A provider-config with no contained request-policy or response-policy
* sub-elements, is a null provider. The container will not instantiate or
* invoke the methods of a null provider, and as such the implementation class
* of a null provider need not exist
*/
/* @XmlType(name = "", propOrder = {
"requestPolicy",
"responsePolicy",
"property"
}) */
/**
* Gets the value of the providerId property.
*
* Identifier used to uniquely identify this provider-config element
*
* @return possible object is
* {@link String }
*/
/**
* Sets the value of the providerId property.
*
* @param value allowed object is
* {@link String }
*/
/**
* Gets the value of the providerType property.
*
* Defines whether the provider is a client authentication provider or a
* server authentication provider.
*
* @return possible object is
* {@link String }
*/
/**
* Sets the value of the providerType property.
*
* @param value allowed object is
* {@link String }
*/
/**
* Gets the value of the className property.
*
* Defines the java implementation class of the provider.
*
* Client authentication providers must implement the
* com.sun.enterprise.security.jauth.ClientAuthModule interface.
*
* Server-side providers must implement the
* com.sun.enterprise.security.jauth.ServerAuthModule interface.
*
* A provider may implement both interfaces, but it must implement the
* interface corresponding to its provider type.
*
* @return possible object is
* {@link String }
*/
/**
* Sets the value of the className property.
*
* @param value allowed object is
* {@link String }
*/
/**
* Gets the value of the requestPolicy property.
*
* Defines the authentication policy requirements associated with request
* processing performed by the authentication provider
*
* @return possible object is
* {@link RequestPolicy }
*/
/**
* Sets the value of the requestPolicy property.
*
* @param value allowed object is
* {@link RequestPolicy }
*/
/**
* Gets the value of the responsePolicy property.
*
* Defines the authentication policy requirements associated with the
* response processing performed by the authentication provider.
*
* @return possible object is
* {@link ResponsePolicy }
*/
/**
* Sets the value of the responsePolicy property.
*
* @param value allowed object is
* {@link ResponsePolicy }
*/
/**
Properties.
*/
props={
@PropertyDesc(name="security.config", defaultValue="${com.sun.aas.instanceRoot}/config/wss-server-config-1.0.xml",
description="Specifies the location of the message security configuration file"),
description="Enables dumping of server provider debug messages to the server log"),
description="Signals the provider runtime to collect the user name and password from the " +
"CallbackHandler for each request. If false, the user name and password for wsse:UsernameToken(s) is " +
"collected once, during module initialization. Applicable only for a ClientAuthModule"),
description="Specifies the encryption key used by the provider. The key is identified by its keystore alias"),
description="Specifies the signature key used by the provider. The key is identified by its keystore alias")
}
)
}