The servlet name doesn't matter. You can choose whatever servlet name you want. It's merely used to locate the relationships between <servlet> and <servlet-mapping> declarations inside web.xml. Just put the class file (complete with the directory structure!) in /WEB-INF/classes the usual way and map it as follows:
<servlet>
<servlet-name>indexJsp</servlet-name>
<servlet-class>some.weblogic.specific.packagename.GeneratedClassNameOfIndexJsp</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>indexJsp</servlet-name>
<url-pattern>/index.jsp</url-pattern>
</servlet-mapping>
The indexJsp servlet name is completely free to your choice. What matters is that the <servlet-class> points the right FQN of the generated class file and the <url-pattern> specifies the URL on which you'd like to invoke this.