US20080163266A1 - Mechanism for transparently interfacing with a third party version control system - Google Patents

Mechanism for transparently interfacing with a third party version control system Download PDF

Info

Publication number
US20080163266A1
US20080163266A1 US11/645,997 US64599706A US2008163266A1 US 20080163266 A1 US20080163266 A1 US 20080163266A1 US 64599706 A US64599706 A US 64599706A US 2008163266 A1 US2008163266 A1 US 2008163266A1
Authority
US
United States
Prior art keywords
vcs
component
api
repository
interact
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US11/645,997
Other versions
US7950024B2 (en
Inventor
Kevin T. Schmidt
Venugopalan Venkataraman
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Oracle America Inc
Original Assignee
Sun Microsystems Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Sun Microsystems Inc filed Critical Sun Microsystems Inc
Priority to US11/645,997 priority Critical patent/US7950024B2/en
Assigned to SUN MICROSYSTEMS, INC. reassignment SUN MICROSYSTEMS, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: SCHMIDT, KEVIN T., VENKATARAMAN, VENUGOPALAN
Publication of US20080163266A1 publication Critical patent/US20080163266A1/en
Application granted granted Critical
Publication of US7950024B2 publication Critical patent/US7950024B2/en
Assigned to Oracle America, Inc. reassignment Oracle America, Inc. MERGER AND CHANGE OF NAME (SEE DOCUMENT FOR DETAILS). Assignors: Oracle America, Inc., ORACLE USA, INC., SUN MICROSYSTEMS, INC.
Active legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management

Definitions

  • EAI systems include an integrated development environment (IDE; also known as “integrated design environment” and “integrated debugging environment”).
  • IDE is a type of computer software that assists computer programmers in developing integrated software applications.
  • IDEs typically consist of a source code editor, a compiler and/or interpreter, build-automation tools, and (usually) a debugger.
  • VCS version control system
  • GUI GUI
  • VCS Concurrent Versions System
  • SCCS Source Code Control System
  • Clear Case Such enterprises typically configure an IDE client to interact directly with the third party VCS.
  • an integration project is saved locally as components (e.g., files) and the components are then checked into the third party VCS.
  • a plug-in i.e., an API is used to allow the IDE client to interact with the third party VCS.
  • FIG. 1 is a block diagram illustrating this approach for enabling an IDE client 102 to interact with a third party VCS.
  • IDE client 102 interacts with a VCS through a version control API 104 .
  • the API 104 is implemented by an API implementation 106 .
  • the system of FIG. 1 may operate as follows.
  • a source file for a coding project is created and stored locally on IDE client 102 .
  • a user e.g., through a GUI of IDE 102 ) initiates a check-in operation, whereby IDE 102 invokes the VCS API 104 , which causes the API implementation 106 to be executed.
  • the API implementation 106 invokes the check-in function of the VCS 110 , which causes the source file to be stored in data storage 112 .
  • a disadvantage of the above approach is the significant risk of losing work if a user does not take the steps necessary to check in modified files to a VCS. For example, if a user forgets to check in modified files, then all the changes may be lost when the user logs out of the system. Therefore, there is a need to provide a better mechanism for enabling a third party VCS to be used in an EAI system.
  • an enterprise application integration (EAI) system comprises an integrated development environment (IDE) client, a repository, an API, and an API implementation.
  • IDE integrated development environment
  • the IDE client enables a user to develop functional components that can be used or executed to derive one or more enterprise application functionalities.
  • the repository interacts with the IDE client to save and access the functional components.
  • the API is invoked by the repository to interact with any VCS.
  • the API implementation enables the repository, by way of invoking the API, to interact with a VCS, which is an external VCS that is not provided as part of the EAI system.
  • the IDE client need not be concerned with aspects of the VCS because the repository takes care of them.
  • multiple API implementations may be provided. These API implementations enable the same API to be used to interact with different VCSs.
  • FIG. 1 is a block diagram illustrating one approach for providing a third party VCS to an IDE client.
  • FIG. 2 is a block diagram illustrating a repository that interacts with a third party VCS, in accordance with an embodiment of the present invention.
  • FIG. 3 is a block diagram that illustrates a computer system upon which an embodiment in accordance with the present invention may be implemented.
  • FIG. 2 is a block diagram illustrating an EAI system 200 , in accordance with an embodiment of the present invention.
  • EAI system 200 comprises one or more IDE clients 202 and a repository 204 .
  • EAI system 200 may also comprise an integrated VCS (not shown) that is provided with EAI system 200 .
  • VCS integrated VCS
  • IDE client 202 With an IDE client, such as IDE client 202 , a user defines all or portions of an enterprise application. For example, a user may develop enterprise applications through all phases of development—generating source code, compiling the source code, and debugging the source code—all with an IDE client. Overall, a user may use IDE client 202 to define functional software components that can be executed to give rise to an enterprise application. When the user is ready to save components, the user causes IDE client 202 to invoke repository 204 . Repository 204 responds by causing components (which may take the form of definition, configuration, and/or executable files) to be stored in a VCS. Similarly, repository 204 accesses components requested by IDE client 202 .
  • components which may take the form of definition, configuration, and/or executable files
  • IDE client 202 may be unaware that any VCS is involved. As far as IDE client 202 knows, IDE client 202 is simply saving and accessing components.
  • repository 204 knows that it is interacting with a VCS; however, repository 204 is not required to know which particular VCS it is interacting with.
  • the API implementation takes care of the specifics of the VCS.
  • the third party VCS is “transparent” to IDE client 202 and repository 204 . In other words, in the views of IDE client 202 and repository 204 , it is as if the native VCS provided with EAI system 200 were used instead of a third party VCS.
  • repository 204 invokes a VCS API 206 .
  • repository 204 causes components to be stored in, or accessed from, a VCS, such as VCS 210 .
  • VCS is not native to EAI system 200 but is provided by a third party.
  • VCS API 206 provides repository 204 with a standard interface that it can use to interact with any third party VCS. The API implementation will translate the API calls into proper calls for invoking the functionalities of the specific third party VCS.
  • Components are analogous to source files with a traditional IDE. Components are not required to be stored locally on a user's system (like files) but rather may be stored through the repository.
  • Components may be any of various types of files, such as files from a Java collaboration and object type definitions or OTDs (which represent different kinds of messages that are used in executing EAI applications).
  • Components may include definition files, configuration files, executable files, and all metadata about a particular project that is built.
  • components may be stored in a VCS as a file.
  • a component is an XML file that describes an object, which indicates that the repository may model an object database.
  • VCS API 206 provides methods that can be called by repository 204 to access and store components. Some methods may include:
  • checkIn Allows the user to check in objects to VC
  • checkOutForRead Allows the user to check out objects for read only
  • checkOutForWrite Allows the user to check out objects for write with lock
  • createBranch Allows the user to create a new branch
  • API implementations such as API implementation 208 , implement VCS API 206 .
  • the API implementation translates calls to the methods of the API into proper calls for invoking the functionalities of the specific VCS. In normal operation, because only one VCS is used at a time, only one API implementation is required. In order to use another VCS, another API implementation is implemented. Multiple API implementations (i.e., 208 and 209 ) are shown to illustrate that any VCS may be used, so long as a proper API implementation is provided.
  • Each VCS may provide a different interface for interacting with other components.
  • an API implementation includes logic to properly interact with a VCS (e.g., call the right methods of the VCS).
  • VCS provides several methods that can be invoked, such as “check-in” and “check-out”.
  • these methods need to be invoked in a certain way using a certain call or message format;
  • the API has the methods “save” and “retrieve”.
  • the repository invokes the “save” method
  • the API implementation translates that into a “check-in” request with the proper format.
  • the repository invokes the “retrieve” method
  • the API implementation translates that into a “check-out” request with the proper format.
  • FIG. 2 illustrates that a single data storage container is used for each VCS (i.e., data storage 212 for VCS 210 and data storage 222 for VCS 220 ).
  • a single VCS may use multiple data storage containers for storing components.
  • multiple VCS may share a single data storage container.
  • EAI system 200 The following is an example of how components may be stored and accessed in an EAI system, such as EAI system 200 .
  • IDE client 202 a user logs into EAI system 200 and develops a new component for an enterprise application.
  • the user saves the new component.
  • Repository 204 receives the save request and invokes VCS API 206 (e.g., invokes the “save” method of API 206 ).
  • the API implementation 208 translates the invocation into a proper call to VCS 210 having the format expected by VCS 210 .
  • the proper call may be, for example, “check-in”.
  • the API implementation 208 then sends the call to VCS 210 .
  • VCS 210 subsequently checks the component in to data storage 212 .
  • the IDE client is causing the component to be checked in to a VCS.
  • the IDE client does not even have to be aware that the component is being checked in to the VCS.
  • a user does not have to save a file locally and then affirmatively check the component in.
  • the check in process is performed automatically and transparently to the user, which is a significant improvement over the current methodology.
  • repository 204 implements a “workspace” for each user.
  • a user may save work (e.g., modified components) to his/her respective workspace without performing a check-in.
  • the user may later choose to check-in a modified component, which then causes VCS API 206 to be used and the modified component to be checked into VCS 210 . Therefore, in this embodiment, a save operation by a user does not automatically check-in the component to the appropriate VCS.
  • different client machines may access saved work. Also, saved work is not lost if the user fails to check in a modified component as is the case with traditional IDEs.
  • the user logs into EAI system 200 and desires to modify the newly created component.
  • the user requests the component from repository 204 .
  • repository 204 invokes VCS API 206 , for example, by calling the “retrieve” method.
  • API implementation 208 translates the “retrieve” method into a proper call and format, such as a “check-out” call.
  • VCS 210 checks out the component from data storage 212 and provides the component to repository 204 , which provides the component to IDE client 202 .
  • EAI system 200 may comprise multiple version control systems (as illustrated), such as VCS 210 and VCS 220 . Accordingly, the EAI system may comprise multiple API implementations 208 and 209 , one for each VCS.
  • the user or another user may use IDE client 202 to save components to, and retrieve components from, repository 204 .
  • repository 204 invokes methods of VCS API 206 .
  • one of the API implementations e.g., the API implementation 209
  • the API implementation 209 then sends the calls to VCS 220 to, for example, check components in and out of data storage 222 .
  • VCS 220 is not an integrated VCS provided with repository 204 and/or IDE client 202 but rather is a VCS provided by a third party.
  • FIG. 3 shows one possible embodiment of a platform for executing the instructions.
  • Computer system 300 includes a bus 302 for facilitating information exchange, and one or more processors 304 coupled with bus 302 for processing information.
  • Computer system 300 also includes a main memory 306 , such as a random access memory (RAM) or other dynamic storage device, coupled to bus 302 for storing information and instructions to be executed by processor 304 .
  • Main memory 306 also may be used for storing temporary variables or other intermediate information during execution of instructions by processor 304 .
  • Computer system 300 may further include a read only memory (ROM) 308 or other static storage device coupled to bus 302 for storing static information and instructions for processor 304 .
  • ROM read only memory
  • a storage device 310 such as a magnetic disk or optical disk, is provided and coupled to bus 302 for storing information and instructions.
  • Computer system 300 may be coupled via bus 302 to a display 312 for displaying information to a computer user.
  • An input device 315 is coupled to bus 302 for communicating information and command selections to processor 304 .
  • cursor control 316 is Another type of user input device, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 304 and for controlling cursor movement on display 312 .
  • This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
  • bus 302 may be any mechanism and/or medium that enables information, signals, data, etc., to be exchanged between the various components.
  • bus 302 may be a set of conductors that carries electrical signals.
  • Bus 302 may also be a wireless medium (e.g., air) that carries wireless signals between one or more of the components.
  • Bus 302 may further be a network connection that connects one or more of the components. Any mechanism and/or medium that enables information, signals, data, etc., to be exchanged between the various components may be used as bus 302 .
  • Bus 302 may also be a combination of these mechanisms/media.
  • processor 304 may communicate with storage device 310 wirelessly.
  • the bus 302 from the standpoint of processor 304 and storage device 310 , would be a wireless medium, such as air.
  • processor 304 may communicate with ROM 308 capacitively.
  • processor 304 may communicate with main memory 306 via a network connection.
  • the bus 302 would be the network connection.
  • processor 304 may communicate with display 312 via a set of conductors. In this instance, the bus 302 would be the set of conductors.
  • Bus 302 may take on different forms.
  • Bus 302 as shown in FIG. 3 , functionally represents all of the mechanisms and/or media that enable information, signals, data, etc., to be exchanged between the various components.
  • the invention is related to the use of computer system 300 for implementing the techniques described herein. According to one embodiment of the invention, those techniques are performed by computer system 300 in response to processor 304 executing one or more sequences of one or more instructions contained in main memory 306 . Such instructions may be read into main memory 306 from another machine-readable medium, such as storage device 310 . Execution of the sequences of instructions contained in main memory 306 causes processor 304 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
  • machine-readable medium refers to any medium that participates in providing data that causes a machine to operation in a specific fashion.
  • various machine-readable media are involved, for example, in providing instructions to processor 304 for execution.
  • Such a medium may take many forms, including but not limited to, non-volatile media, volatile media, and transmission media.
  • Non-volatile media includes, for example, optical or magnetic disks, such as storage device 310 .
  • Volatile media includes dynamic memory, such as main memory 306 .
  • Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 302 . Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications.
  • Machine-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, DVD, or any other optical storage medium, punchcards, papertape, any other physical medium with patterns of holes, a RAM, a PROM, an EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.
  • Various forms of machine-readable media may be involved in carrying one or more sequences of one or more instructions to processor 304 for execution.
  • the instructions may initially be carried on a magnetic disk of a remote computer.
  • the remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem.
  • a modem local to computer system 300 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal.
  • An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 302 .
  • Bus 302 carries the data to main memory 306 , from which processor 304 retrieves and executes the instructions.
  • the instructions received by main memory 306 may optionally be stored on storage device 310 either before or after execution by processor 304 .
  • Computer system 300 also includes a communication interface 318 coupled to bus 302 .
  • Communication interface 318 provides a two-way data communication coupling to a network link 320 that is connected to a local network 322 .
  • communication interface 318 may be an integrated services digital network (ISDN) card or a modem to provide a data communication connection to a corresponding type of telephone line.
  • ISDN integrated services digital network
  • communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN.
  • LAN local area network
  • Wireless links may also be implemented.
  • communication interface 318 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
  • Network link 320 typically provides data communication through one or more networks to other data devices.
  • network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326 .
  • ISP 326 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 328 .
  • Internet 328 uses electrical, electromagnetic or optical signals that carry digital data streams.
  • the signals through the various networks and the signals on network link 320 and through communication interface 318 which carry the digital data to and from computer system 300 , are exemplary forms of carrier waves transporting the information.
  • Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318 .
  • a server 330 might transmit a requested code for an application program through Internet 328 , ISP 326 , local network 322 and communication interface 318 .
  • the received code may be executed by processor 304 as it is received, and/or stored in storage device 310 , or other non-volatile storage for later execution. In this manner, computer system 300 may obtain application code in the form of a carrier wave.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

Approaches for transparently interfacing with a third party version control system (VCS) are provided. In one approach, an enterprise application integration (EAI) system comprises an integrated development environment (IDE) client, a repository, an API, and an API implementation. The IDE client enables a user to develop one or more functional components that can be used or executed to derive one or more enterprise application functionalities. The repository interacts with the IDE client to save and access the one or more functional components. The API is invoked by the repository to interact with any VCS. The API implementation enables the repository, by way of invoking the API, to interact with a VCS, which is an external VCS that is not provided as part of the EAI system.

Description

    BACKGROUND
  • Early software programs in areas such as inventory control, human resources, sales automation, and database management were designed to run independently, with no interaction between the programs. The programs were custom built in the technology of the day for a specific need being addressed and were often proprietary systems. As enterprises grew and recognized the need for their information and applications to have the ability to be transferred across and shared between systems, companies began investing in enterprise application integration (EAI) systems in order to streamline processes and keep all the elements of the enterprise interconnected.
  • Some EAI systems include an integrated development environment (IDE; also known as “integrated design environment” and “integrated debugging environment”). An IDE is a type of computer software that assists computer programmers in developing integrated software applications. IDEs typically consist of a source code editor, a compiler and/or interpreter, build-automation tools, and (usually) a debugger. Sometimes a version control system (VCS) and various tools to simplify the construction of a GUI are integrated as well. Although some multiple-language IDEs are in use, such as the Eclipse IDE, NetBeans, and Microsoft Visual Studio, an IDE is typically devoted to a specific programming language, as in the Visual Basic IDE.
  • Today, many EAI systems contain their own VCS. However, many enterprises that purchase EAI systems prefer to continue to use their existing third party VCS rather than the embedded VCS of their respective EAI system. Common third party VCSs include Concurrent Versions System (CVS), Source Code Control System (SCCS), and Clear Case. Such enterprises typically configure an IDE client to interact directly with the third party VCS. In order to use a third party VCS, an integration project is saved locally as components (e.g., files) and the components are then checked into the third party VCS. A plug-in (i.e., an API) is used to allow the IDE client to interact with the third party VCS.
  • FIG. 1 is a block diagram illustrating this approach for enabling an IDE client 102 to interact with a third party VCS. IDE client 102 interacts with a VCS through a version control API 104. The API 104 is implemented by an API implementation 106.
  • The system of FIG. 1 may operate as follows. A source file for a coding project is created and stored locally on IDE client 102. A user (e.g., through a GUI of IDE 102) initiates a check-in operation, whereby IDE 102 invokes the VCS API 104, which causes the API implementation 106 to be executed. In turn, the API implementation 106 invokes the check-in function of the VCS 110, which causes the source file to be stored in data storage 112.
  • A disadvantage of the above approach is the significant risk of losing work if a user does not take the steps necessary to check in modified files to a VCS. For example, if a user forgets to check in modified files, then all the changes may be lost when the user logs out of the system. Therefore, there is a need to provide a better mechanism for enabling a third party VCS to be used in an EAI system.
  • The approaches described in this section could be pursued, but are not necessarily approaches that have been previously conceived or pursued. Therefore, unless otherwise indicated herein, the approaches described in this section are not prior art to the claims in this application and are not admitted to be prior art by inclusion in this section.
  • SUMMARY
  • An approach for transparently interfacing with a third party version control system (VCS) is provided herein. According to an embodiment, an enterprise application integration (EAI) system comprises an integrated development environment (IDE) client, a repository, an API, and an API implementation. The IDE client enables a user to develop functional components that can be used or executed to derive one or more enterprise application functionalities. The repository interacts with the IDE client to save and access the functional components. The API is invoked by the repository to interact with any VCS. The API implementation enables the repository, by way of invoking the API, to interact with a VCS, which is an external VCS that is not provided as part of the EAI system. Thus, the IDE client need not be concerned with aspects of the VCS because the repository takes care of them.
  • In one embodiment, multiple API implementations may be provided. These API implementations enable the same API to be used to interact with different VCSs.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • The systems and methods described herein are illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings. Similar reference numbers are used throughout the drawings to reference similar elements and features.
  • FIG. 1 is a block diagram illustrating one approach for providing a third party VCS to an IDE client.
  • FIG. 2 is a block diagram illustrating a repository that interacts with a third party VCS, in accordance with an embodiment of the present invention.
  • FIG. 3 is a block diagram that illustrates a computer system upon which an embodiment in accordance with the present invention may be implemented.
  • DETAILED DESCRIPTION OF THE EMBODIMENT(S)
  • The systems and methods described herein relate to transparently interfacing with a third party version control system. For purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the various systems and methods. It will be apparent, however, that the systems and methods described herein may be implemented without these specific details. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.
  • System Overview
  • FIG. 2 is a block diagram illustrating an EAI system 200, in accordance with an embodiment of the present invention. EAI system 200 comprises one or more IDE clients 202 and a repository 204. EAI system 200 may also comprise an integrated VCS (not shown) that is provided with EAI system 200. However, it is presumed that a third party VCS is used rather than the native VCS; hence, there is a need for a VCS API.
  • IDE Client and Repository
  • With an IDE client, such as IDE client 202, a user defines all or portions of an enterprise application. For example, a user may develop enterprise applications through all phases of development—generating source code, compiling the source code, and debugging the source code—all with an IDE client. Overall, a user may use IDE client 202 to define functional software components that can be executed to give rise to an enterprise application. When the user is ready to save components, the user causes IDE client 202 to invoke repository 204. Repository 204 responds by causing components (which may take the form of definition, configuration, and/or executable files) to be stored in a VCS. Similarly, repository 204 accesses components requested by IDE client 202.
  • Although IDE client 202 “knows” that it is saving and accessing components, IDE client 202 may be unaware that any VCS is involved. As far as IDE client 202 knows, IDE client 202 is simply saving and accessing components. On the other hand, repository 204 knows that it is interacting with a VCS; however, repository 204 is not required to know which particular VCS it is interacting with. The API implementation takes care of the specifics of the VCS. In software terms, the third party VCS is “transparent” to IDE client 202 and repository 204. In other words, in the views of IDE client 202 and repository 204, it is as if the native VCS provided with EAI system 200 were used instead of a third party VCS.
  • With the information from IDE client 202, repository 204 invokes a VCS API 206. By doing so, repository 204 causes components to be stored in, or accessed from, a VCS, such as VCS 210. In one embodiment, the VCS is not native to EAI system 200 but is provided by a third party. VCS API 206 provides repository 204 with a standard interface that it can use to interact with any third party VCS. The API implementation will translate the API calls into proper calls for invoking the functionalities of the specific third party VCS.
  • Components
  • Components are analogous to source files with a traditional IDE. Components are not required to be stored locally on a user's system (like files) but rather may be stored through the repository.
  • Components may be any of various types of files, such as files from a Java collaboration and object type definitions or OTDs (which represent different kinds of messages that are used in executing EAI applications). Components may include definition files, configuration files, executable files, and all metadata about a particular project that is built. Ultimately, components may be stored in a VCS as a file. In one embodiment, a component is an XML file that describes an object, which indicates that the repository may model an object database.
  • VCS API
  • VCS API 206 provides methods that can be called by repository 204 to access and store components. Some methods may include:
  • checkIn: Allows the user to check in objects to VC
  • checkOutForRead: Allows the user to check out objects for read only
  • checkOutForWrite: Allows the user to check out objects for write with lock
  • getHistory: Allows the user to get history of an object
  • label: Allows the user to label objects
  • unlock: Allows the user to unlock the objects locked by checkOutForWrite operation
  • createBranch: Allows the user to create a new branch
  • getAllBranchNames: Gets all the branches in the VC repository
  • tag: Allows the user to create a new tag
  • API Implementations
  • API implementations, such as API implementation 208, implement VCS API 206. There is one API implementation for each VCS. The API implementation translates calls to the methods of the API into proper calls for invoking the functionalities of the specific VCS. In normal operation, because only one VCS is used at a time, only one API implementation is required. In order to use another VCS, another API implementation is implemented. Multiple API implementations (i.e., 208 and 209) are shown to illustrate that any VCS may be used, so long as a proper API implementation is provided. Each VCS may provide a different interface for interacting with other components. Thus, an API implementation includes logic to properly interact with a VCS (e.g., call the right methods of the VCS).
  • For example, suppose a VCS provides several methods that can be invoked, such as “check-in” and “check-out”. Suppose further that these methods need to be invoked in a certain way using a certain call or message format; suppose further that the API has the methods “save” and “retrieve”. When the repository invokes the “save” method, the API implementation translates that into a “check-in” request with the proper format. Similarly, when the repository invokes the “retrieve” method, the API implementation translates that into a “check-out” request with the proper format.
  • Data Storage
  • FIG. 2 illustrates that a single data storage container is used for each VCS (i.e., data storage 212 for VCS 210 and data storage 222 for VCS 220). However, a single VCS may use multiple data storage containers for storing components. Alternatively, multiple VCS may share a single data storage container.
  • Sample Operation
  • The following is an example of how components may be stored and accessed in an EAI system, such as EAI system 200. Using IDE client 202, a user logs into EAI system 200 and develops a new component for an enterprise application. Using IDE client 202, the user saves the new component. Repository 204 receives the save request and invokes VCS API 206 (e.g., invokes the “save” method of API 206). In response to the invocation of the API 206, the API implementation 208 translates the invocation into a proper call to VCS 210 having the format expected by VCS 210. The proper call may be, for example, “check-in”. The API implementation 208 then sends the call to VCS 210. VCS 210 subsequently checks the component in to data storage 212.
  • Thus, by saving the component, the IDE client is causing the component to be checked in to a VCS. The IDE client does not even have to be aware that the component is being checked in to the VCS. With this setup, a user does not have to save a file locally and then affirmatively check the component in. The check in process is performed automatically and transparently to the user, which is a significant improvement over the current methodology.
  • In one embodiment, repository 204 implements a “workspace” for each user. A user may save work (e.g., modified components) to his/her respective workspace without performing a check-in. Thus, the user may later choose to check-in a modified component, which then causes VCS API 206 to be used and the modified component to be checked into VCS 210. Therefore, in this embodiment, a save operation by a user does not automatically check-in the component to the appropriate VCS. However, because a user's workspace is still within the repository, different client machines may access saved work. Also, saved work is not lost if the user fails to check in a modified component as is the case with traditional IDEs.
  • In a subsequent session, the user logs into EAI system 200 and desires to modify the newly created component. Using IDE client 202, the user requests the component from repository 204. In response to the request from IDE client 202, repository 204 invokes VCS API 206, for example, by calling the “retrieve” method. API implementation 208 translates the “retrieve” method into a proper call and format, such as a “check-out” call. VCS 210 then checks out the component from data storage 212 and provides the component to repository 204, which provides the component to IDE client 202.
  • EAI system 200 may comprise multiple version control systems (as illustrated), such as VCS 210 and VCS 220. Accordingly, the EAI system may comprise multiple API implementations 208 and 209, one for each VCS. In such a system, the user (or another user) may use IDE client 202 to save components to, and retrieve components from, repository 204. In response to requests to save components, repository 204 invokes methods of VCS API 206. In response to the invocations of the API 206, one of the API implementations (e.g., the API implementation 209) translates the invocations into proper calls to VCS 220 having the format expected by VCS 220. The API implementation 209 then sends the calls to VCS 220 to, for example, check components in and out of data storage 222.
  • In one embodiment, VCS 220, like VCS 210, is not an integrated VCS provided with repository 204 and/or IDE client 202 but rather is a VCS provided by a third party.
  • One benefit of the above approach is that, rather than storing files locally, files are stored through a repository, which is a common place that multiple IDE clients may connect to in order to ensure that all modified files are checked into a VCS. Otherwise, when working with local files, there is a significant risk that one or more users will forget to perform a check-in of modified components, thus losing important changes and wasting valuable time.
  • Hardware Overview
  • FIG. 3 shows one possible embodiment of a platform for executing the instructions. Computer system 300 includes a bus 302 for facilitating information exchange, and one or more processors 304 coupled with bus 302 for processing information. Computer system 300 also includes a main memory 306, such as a random access memory (RAM) or other dynamic storage device, coupled to bus 302 for storing information and instructions to be executed by processor 304. Main memory 306 also may be used for storing temporary variables or other intermediate information during execution of instructions by processor 304. Computer system 300 may further include a read only memory (ROM) 308 or other static storage device coupled to bus 302 for storing static information and instructions for processor 304. A storage device 310, such as a magnetic disk or optical disk, is provided and coupled to bus 302 for storing information and instructions.
  • Computer system 300 may be coupled via bus 302 to a display 312 for displaying information to a computer user. An input device 315, including alphanumeric and other keys, is coupled to bus 302 for communicating information and command selections to processor 304. Another type of user input device is cursor control 316, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 304 and for controlling cursor movement on display 312. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
  • In computer system 300, bus 302 may be any mechanism and/or medium that enables information, signals, data, etc., to be exchanged between the various components. For example, bus 302 may be a set of conductors that carries electrical signals. Bus 302 may also be a wireless medium (e.g., air) that carries wireless signals between one or more of the components. Bus 302 may further be a network connection that connects one or more of the components. Any mechanism and/or medium that enables information, signals, data, etc., to be exchanged between the various components may be used as bus 302.
  • Bus 302 may also be a combination of these mechanisms/media. For example, processor 304 may communicate with storage device 310 wirelessly. In such a case, the bus 302, from the standpoint of processor 304 and storage device 310, would be a wireless medium, such as air. Further, processor 304 may communicate with ROM 308 capacitively. Further, processor 304 may communicate with main memory 306 via a network connection. In this case, the bus 302 would be the network connection. Further, processor 304 may communicate with display 312 via a set of conductors. In this instance, the bus 302 would be the set of conductors. Thus, depending upon how the various components communicate with each other, bus 302 may take on different forms. Bus 302, as shown in FIG. 3, functionally represents all of the mechanisms and/or media that enable information, signals, data, etc., to be exchanged between the various components.
  • The invention is related to the use of computer system 300 for implementing the techniques described herein. According to one embodiment of the invention, those techniques are performed by computer system 300 in response to processor 304 executing one or more sequences of one or more instructions contained in main memory 306. Such instructions may be read into main memory 306 from another machine-readable medium, such as storage device 310. Execution of the sequences of instructions contained in main memory 306 causes processor 304 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
  • The term “machine-readable medium” as used herein refers to any medium that participates in providing data that causes a machine to operation in a specific fashion. In an embodiment implemented using computer system 300, various machine-readable media are involved, for example, in providing instructions to processor 304 for execution. Such a medium may take many forms, including but not limited to, non-volatile media, volatile media, and transmission media. Non-volatile media includes, for example, optical or magnetic disks, such as storage device 310. Volatile media includes dynamic memory, such as main memory 306. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 302. Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications.
  • Common forms of machine-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, DVD, or any other optical storage medium, punchcards, papertape, any other physical medium with patterns of holes, a RAM, a PROM, an EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.
  • Various forms of machine-readable media may be involved in carrying one or more sequences of one or more instructions to processor 304 for execution. For example, the instructions may initially be carried on a magnetic disk of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 300 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal. An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 302. Bus 302 carries the data to main memory 306, from which processor 304 retrieves and executes the instructions. The instructions received by main memory 306 may optionally be stored on storage device 310 either before or after execution by processor 304.
  • Computer system 300 also includes a communication interface 318 coupled to bus 302. Communication interface 318 provides a two-way data communication coupling to a network link 320 that is connected to a local network 322. For example, communication interface 318 may be an integrated services digital network (ISDN) card or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 318 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
  • Network link 320 typically provides data communication through one or more networks to other data devices. For example, network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326. ISP 326 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 328. Local network 322 and Internet 328 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 320 and through communication interface 318, which carry the digital data to and from computer system 300, are exemplary forms of carrier waves transporting the information.
  • Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318. In the Internet example, a server 330 might transmit a requested code for an application program through Internet 328, ISP 326, local network 322 and communication interface 318.
  • The received code may be executed by processor 304 as it is received, and/or stored in storage device 310, or other non-volatile storage for later execution. In this manner, computer system 300 may obtain application code in the form of a carrier wave.
  • At this point, it should be noted that although the invention has been described with reference to a specific embodiment, it should not be construed to be so limited. Various modifications may be made by those of ordinary skill in the art with the benefit of this disclosure without departing from the spirit of the invention. Thus, the invention should not be limited by the specific embodiments used to illustrate it but only by the scope of the issued claims and the equivalents thereof.

Claims (20)

1. A method implemented by a repository, comprising:
receiving, from an integrated development environment (IDE) client, a request to save a first component developed by a user of the IDE client, wherein the first component represents a functional component that can be used or executed to derive one or more enterprise application functionalities; and
in response to the request to save the first component, invoking an application programming interface (API) to interact with a first version control system (VCS) to check the first component into the first VCS, wherein the first VCS is not an integrated VCS provided with the repository and the IDE client, and wherein the API may be invoked to interact with any VCS.
2. The method of claim 1, further comprising:
receiving, from the IDE client, a request to access a first saved component from the repository, wherein the first saved component represents a functional component that can be used or executed to derive one or more enterprise application functionalities; and
in response to the request to access the first saved component, invoking the API to interact with the first VCS to check the first saved component out of the first VCS.
3. The method of claim 2, wherein at least one of the first component or the first saved component is a definition file.
4. The method of claim 2, wherein at least one of the first component or the first saved component is an executable file.
5. The method of claim 1, wherein a first implementation of the API is used to interact with the first VCS.
6. The method of claim 5, further comprising:
receiving, from the IDE client, a request to save a second component developed by a user of the IDE client, wherein the second component represents a functional component that can be used or executed to derive one or more enterprise application functionalities;
in response to the request to save the second component, invoking the API to interact with a second VCS to check the second component into the second VCS, wherein the second VCS is not an integrated VCS provided with the repository and the other IDE client;
receiving, from the IDE client, a request to access a saved component from the repository, wherein the saved component represents a functional component that can be used or executed to derive one or more enterprise application functionalities; and
in response to the request to access the saved component, invoking the API to interact with the second VCS to check the saved component out of the second VCS;
wherein a second implementation of the API is used to interact with the second VCS.
7. A machine-readable medium, comprising one or more sets of instructions which, when executed by one or more processors, cause the one or more processors to perform the operations of:
receiving, from an integrated development environment (IDE) client, a request to save a first component developed by a user of the IDE client, wherein the first component represents a functional component that can be used or executed to derive one or more enterprise application functionalities; and
in response to the request to save the first component, invoking an application programming interface (API) to interact with a first version control system (VCS) to check the first component into the first VCS, wherein the first VCS is not an integrated VCS provided with the repository and the IDE client, and wherein the API may be invoked to interact with any VCS.
8. The machine-readable medium of claim 7, further comprising:
receiving, from the IDE client, a request to access a first saved component from the repository, wherein the first saved component represents a functional component that can be used or executed to derive one or more enterprise application functionalities; and
in response to the request to access the first saved component, invoking the API to interact with the first VCS to check the first saved component out of the first VCS.
9. The machine-readable medium of claim 8, wherein at least one of the first component or the first saved component is a definition file.
10. The machine-readable medium of claim 8, wherein at least one of the first component or the first saved component is an executable file.
11. The machine-readable medium of claim 7, wherein a first implementation of the API is used to interact with the first VCS.
12. The machine-readable medium of claim 11, further comprising:
receiving, from the IDE client, a request to save a second component developed by a user of the IDE client, wherein the second component represents a functional component that can be used or executed to derive one or more enterprise application functionalities;
in response to the request to save the second component, invoking the API to interact with a second VCS to check the second component into the second VCS, wherein the second VCS is not an integrated VCS provided with the repository and the other IDE client;
receiving, from the IDE client, a request to access a saved component from the repository, wherein the saved component represents a functional component that can be used or executed to derive one or more enterprise application functionalities; and
in response to the request to access the saved component, invoking the API to interact with the second VCS to check the saved component out of the second VCS;
wherein a second implementation of the API is used to interact with the second VCS.
13. An enterprise application integration (EAI) system, comprising:
an integrated development environment (IDE) client, the IDE client enabling a user to develop one or more functional components that can be used or executed to derive one or more enterprise application functionalities;
a repository, the repository interacting with the IDE client to save and access functional components;
an application programming interface (API) that can be invoked by the repository to interact with any version control system (VCS); and
a first API implementation which enables the repository, by way of invoking the API, to interact with a first VCS, wherein the first VCS is an external VCS which is not provided as part of the EAI system.
14. The system of claim 13, wherein the repository receives, from the IDE client, a request to save a first functional component developed by a user of the IDE client, and in response, the repository invoking the API, which in turn, uses the first API implementation, to interact with the first VCS to check the first functional component into the first VCS.
15. The system of claim 14, wherein the repository receives, from the IDE client, a request to access a first saved functional component, and in response, the repository invoking the API, which in turn, uses the first API implementation, to interact with the first VCS to check the first saved functional component out of the first VCS.
16. The system of claim 15, wherein the system further comprises a second API implementation which enables the repository, by way of invoking the API, to interact with a second VCS, wherein the second VCS is an external VCS which is not provided as part of the EAI system, and wherein the second VCS is different from the first VCS.
17. The system of claim 16, wherein the repository receives, from the IDE client, a request to save a second functional component developed by a user of the IDE client, and in response, the repository invoking the API, which in turn, uses the second API implementation, to interact with the second VCS to check the second functional component into the second VCS.
18. The system of claim 17, wherein the repository receives, from the IDE client, a request to access a second saved functional component, and in response, the repository invoking the API, which in turn, uses the second API implementation, to interact with the second VCS to check the second saved functional component out of the second VCS.
19. The system of claim 13, wherein at least one of the functional components is a definition file.
20. The system of claim 13, wherein at least one of the functional components is an executable file.
US11/645,997 2006-12-27 2006-12-27 Mechanism for transparently interfacing with a third party version control system Active 2029-07-09 US7950024B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US11/645,997 US7950024B2 (en) 2006-12-27 2006-12-27 Mechanism for transparently interfacing with a third party version control system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US11/645,997 US7950024B2 (en) 2006-12-27 2006-12-27 Mechanism for transparently interfacing with a third party version control system

Publications (2)

Publication Number Publication Date
US20080163266A1 true US20080163266A1 (en) 2008-07-03
US7950024B2 US7950024B2 (en) 2011-05-24

Family

ID=39585959

Family Applications (1)

Application Number Title Priority Date Filing Date
US11/645,997 Active 2029-07-09 US7950024B2 (en) 2006-12-27 2006-12-27 Mechanism for transparently interfacing with a third party version control system

Country Status (1)

Country Link
US (1) US7950024B2 (en)

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102053836A (en) * 2010-12-31 2011-05-11 广东欧珀电子工业有限公司 Implementation method of version management tool for Android application development
US20130305219A1 (en) * 2010-12-23 2013-11-14 Electronics And Telecommunications Research Institute Apparatus and method for providing custom software, and method for software customization
US20140282397A1 (en) * 2013-03-15 2014-09-18 Microsoft Corporation Source control of custom code in a backend-as-a-service module
US20160004532A1 (en) * 2007-12-29 2016-01-07 Amx, Llc Self-describing device module and system and computer-readable medium for the production thereof
EP2580699A4 (en) * 2010-06-11 2016-07-27 Usablenet Inc Software project management apparatuses and methods thereof
US10204031B2 (en) * 2007-02-19 2019-02-12 Blackberry Limited Methods and system to create applications and distribute applications to a remote device
US20190163469A1 (en) * 2017-11-27 2019-05-30 Salesforce.Com, Inc. Content deployment system having a proxy for continuously providing selected content items to a content publishing engine for integration into a specific release and methods for implementing the same
US10409583B2 (en) * 2017-11-27 2019-09-10 Salesforce.Com, Inc. Content deployment system having a content publishing engine with a filter module for selectively extracting content items provided from content sources for integration into a specific release and methods for implementing the same
CN111886579A (en) * 2018-02-05 2020-11-03 切普泰克有限责任公司 System and method for providing an instant messaging channel within an integrated development environment

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9116778B2 (en) * 2010-04-29 2015-08-25 Microsoft Technology Licensing, Llc Remotable project
US9607006B2 (en) * 2011-10-06 2017-03-28 General Electric Company Temporary distributed file persistence

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030237073A1 (en) * 2001-05-17 2003-12-25 Karel Gardas Software synchronization of interface and class implementation

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030237073A1 (en) * 2001-05-17 2003-12-25 Karel Gardas Software synchronization of interface and class implementation

Cited By (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10204031B2 (en) * 2007-02-19 2019-02-12 Blackberry Limited Methods and system to create applications and distribute applications to a remote device
US20160004532A1 (en) * 2007-12-29 2016-01-07 Amx, Llc Self-describing device module and system and computer-readable medium for the production thereof
US9792113B2 (en) * 2007-12-29 2017-10-17 Amx, Llc Self-describing device module and system and computer-readable medium for the production thereof
EP2580699A4 (en) * 2010-06-11 2016-07-27 Usablenet Inc Software project management apparatuses and methods thereof
US20130305219A1 (en) * 2010-12-23 2013-11-14 Electronics And Telecommunications Research Institute Apparatus and method for providing custom software, and method for software customization
CN102053836A (en) * 2010-12-31 2011-05-11 广东欧珀电子工业有限公司 Implementation method of version management tool for Android application development
US20140282397A1 (en) * 2013-03-15 2014-09-18 Microsoft Corporation Source control of custom code in a backend-as-a-service module
US10255063B2 (en) * 2013-03-15 2019-04-09 Microsoft Technology Licensing, Llc Providing source control of custom code for a user without providing source control of host code for the user
US20190163469A1 (en) * 2017-11-27 2019-05-30 Salesforce.Com, Inc. Content deployment system having a proxy for continuously providing selected content items to a content publishing engine for integration into a specific release and methods for implementing the same
US10409583B2 (en) * 2017-11-27 2019-09-10 Salesforce.Com, Inc. Content deployment system having a content publishing engine with a filter module for selectively extracting content items provided from content sources for integration into a specific release and methods for implementing the same
US10684847B2 (en) * 2017-11-27 2020-06-16 Salesforce.Com, Inc. Content deployment system having a proxy for continuously providing selected content items to a content publishing engine for integration into a specific release and methods for implementing the same
US10956146B2 (en) * 2017-11-27 2021-03-23 Salesforce.Com, Inc. Content deployment system having a content publishing module for selectively extracting content items for integration into a specific release and methods for implementing the same
US11016757B2 (en) 2017-11-27 2021-05-25 Salesforce.Com, Inc. Content deployment system having a proxy for continuously providing selected content items to a content publishing engine for integration into a specific release and methods for implementing the same
CN111886579A (en) * 2018-02-05 2020-11-03 切普泰克有限责任公司 System and method for providing an instant messaging channel within an integrated development environment
US11513793B2 (en) * 2018-02-05 2022-11-29 Codestream, Inc. Systems and methods for providing an instant communication channel within integrated development environments

Also Published As

Publication number Publication date
US7950024B2 (en) 2011-05-24

Similar Documents

Publication Publication Date Title
US20080163266A1 (en) Mechanism for transparently interfacing with a third party version control system
US5758351A (en) System and method for the creation and use of surrogate information system objects
JP5021193B2 (en) Declarative representation of an extensible workflow model
US8473896B2 (en) Computer software development incorporating core and compound services
US7752598B2 (en) Generating executable objects implementing methods for an information model
US7831655B2 (en) System and method for implementing a service adapter
US7152090B2 (en) Metadata-aware enterprise application integration framework for application server environment
JP3072709B2 (en) Request transmission method
US7627865B2 (en) Method and apparatus for accessing instrumentation data from within a managed code environment
US20050192984A1 (en) System and method for building mixed mode execution environment for component applications
Ben-Shaul et al. Dynamic adaptation and deployment of distributed components in hadas
US20040172637A1 (en) Code morphing manager
CN110716720A (en) Method and device for realizing application hot deployment
Evans et al. Zones, contracts and absorbing changes: An approach to software evolution
US7681202B2 (en) Portal runtime framework
Selić Specifying dynamic software system architectures
Amor et al. Malaca: A component and aspect-oriented agent architecture
US20200293383A1 (en) System and Method for Developing Modularized Application
Haja et al. Location, proximity, affinity–the key factors in FaaS
AU2019100212A4 (en) System and method for developing modularized application
Papaioannou et al. Mobile agent technology in support of sales order processing in the virtual enterprise
EP1785852A2 (en) Supporting method references in the java language
US20030126306A1 (en) Data communication method, data communication system, and program
CN117056317B (en) Data processing method, device, equipment and computer readable storage medium
Depledge et al. An open, distributable, three-tier client-server architecture with transaction semantics

Legal Events

Date Code Title Description
AS Assignment

Owner name: SUN MICROSYSTEMS, INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:SCHMIDT, KEVIN T.;VENKATARAMAN, VENUGOPALAN;REEL/FRAME:018742/0772

Effective date: 20061221

STCF Information on status: patent grant

Free format text: PATENTED CASE

FPAY Fee payment

Year of fee payment: 4

AS Assignment

Owner name: ORACLE AMERICA, INC., CALIFORNIA

Free format text: MERGER AND CHANGE OF NAME;ASSIGNORS:ORACLE USA, INC.;SUN MICROSYSTEMS, INC.;ORACLE AMERICA, INC.;REEL/FRAME:037311/0101

Effective date: 20100212

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 8

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 12TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1553); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 12