Skip to Main Content
Securing WebLogic Server 12c
book

Securing WebLogic Server 12c

by Luca Masini
November 2012
Intermediate to advanced content levelIntermediate to advanced
100 pages
2h 16m
English
Packt Publishing
Content preview from Securing WebLogic Server 12c

Writing the MBean implementation

Every Authentication Provider must implement the weblogic.security.spi.AuthenticationProviderV2 interface, which is the real contract between WebLogic's Security Services and our implementation, as shown in the following code snippet:

public class PacktAuthProviderImpl implements AuthenticationProviderV2 { private static final Logger LOGGER = Logger.getLogger(PacktAuthProviderImpl.class.getSimpleName()); @Override public void initialize(ProviderMBean mbean, SecurityServices services) { LOGGER.info("PacktAuthProviderImpl.initialize"); } @Override public String getDescription() { return null; } @Override public void shutdown() { LOGGER.info("PacktAuthProviderImpl.shutdown"); } @Override public AppConfigurationEntry ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Professional Oracle® WebLogic Server

Professional Oracle® WebLogic Server

Robert Patrick, Gregory Nyberg, Philip Aston, Josh Bregman, Paul Done
Linux: Powerful Server Administration

Linux: Powerful Server Administration

Uday Sawant, Oliver Pelz, Jonathan Hobson, William Leemans
The Definitive Guide to SOA: Oracle® Service Bus, SECOND EDITION

The Definitive Guide to SOA: Oracle® Service Bus, SECOND EDITION

Jeff Davies, David Schorow, Samrat Ray, David Rieber

Publisher Resources

ISBN: 9781849687782Other