Skip to main content

Report types deprecated or removed in WebLogic version 14.1.2

com.oracle.weblogic.rewrite.ReportDeprecatedOrRemoved1412

This recipe will report Java types that have been deprecated or removed in WebLogic version 14.1.2.

Recipe source

GitHub: search?type=code&q=com.oracle.weblogic.rewrite.ReportDeprecatedOrRemoved1412, Issue Tracker, Maven Central

info

This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.

This recipe is available under the Apache License Version 2.0.

Definition

  • Report uses of Java types deprecated or removed in WebLogic
  • Find types
    • fullyQualifiedTypeName: weblogic.jdbc.extensions.DataSourceSwitchingCallback
  • Find types
    • fullyQualifiedTypeName: weblogic.jdbc.rowset.*
  • Find types
    • fullyQualifiedTypeName: weblogic.logging.log4j.*
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.ForeignJMSConnectionFactoryMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.ForeignJMSDestinationMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.ForeignJMSServerMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JDBCSystemResourceOverrideMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSConnectionFactoryMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDestCommonMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDestinationKeyMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDestinationMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDistributedDestinationMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDistributedDestinationMemberMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDistributedQueueMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDistributedQueueMemberMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDistributedTopicMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSDistributedTopicMemberMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSFileStoreMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSInteropModuleMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSJDBCStoreMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSQueueMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSStoreMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSTemplateMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSTopicMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.configuration.JMSVirtualDestinationMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.FairShareConstraintRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.JDBCPartitionRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.JDBCProxyDataSourceRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.JTAPartitionRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.KodoDataCacheRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.KodoPersistenceUnitRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.KodoQueryCacheRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.KodoQueryCompilationCacheRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.RecourseActionEventVBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.ResourceManagerRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.ResourceRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.ResourceRuntimeMBean$ResourceType
  • Find types
    • fullyQualifiedTypeName: weblogic.management.runtime.TriggerRuntimeMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.management.security.pk.KeyStoreMBean
  • Find types
    • fullyQualifiedTypeName: weblogic.rmi.RMISecurityException
  • Find types
    • fullyQualifiedTypeName: weblogic.rmi.RMISecurityManager
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.conversation.ConversationIdNotYetAvailableException
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.conversation.ConversationUtils
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.jws.JwsContext
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.reliability.ReliabilityErrorListener
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.reliability.ReliabilityErrorListenerRegistry
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.reliability.WsrmHelper
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.reliability.WsrmUtils
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.reliability.faults.*
  • Find types
    • fullyQualifiedTypeName: weblogic.wsee.wstx.wsat.Transactional.*
  • Find types
    • fullyQualifiedTypeName: weblogic.xml.schema..*

Used by

This recipe is used as part of the following composite recipes:

Usage

This recipe has no required configuration options. It can be activated by adding a dependency on `org.openrewrite.recipe:rewrite-third-party` in your build file or by running a shell command (in which case no build changes are needed):

  1. Add the following to your build.gradle file:
    build.gradle
    plugins {
    id("org.openrewrite.rewrite") version("latest.release")
    }

    rewrite {
    activeRecipe("com.oracle.weblogic.rewrite.ReportDeprecatedOrRemoved1412")
    setExportDatatables(true)
    }

    repositories {
    mavenCentral()
    }

    dependencies {
    rewrite("org.openrewrite.recipe:rewrite-third-party:0.39.0")
    }
  2. Run gradle rewriteRun to run the recipe.

See how this recipe works across multiple open-source repositories

Run this recipe on OSS repos at scale with the Moderne SaaS.

The community edition of the Moderne platform enables you to easily run recipes across thousands of open-source repositories.

Please contact Moderne for more information about safely running the recipes on your own codebase in a private SaaS.

Data Tables

Method calls

org.openrewrite.java.table.MethodCalls

The text of matching method invocations.

Column NameDescription
Source fileThe source file that the method call occurred in.
Method callThe text of the method call.
Class nameThe class name of the method call.
Method nameThe method name of the method call.
Argument typesThe argument types of the method call.