Skip to main content

Google Summer of Code 2016

This year also I worked on Google Summer of code 2016.

This year there were lot of changes from google side. First thing was that  Carol Smith from gsoc and new manager for gsoc is Stephanie Taylor. After new manager, they left the old melange site and migrated to new site

  summerofcode.withgoogle.com

developers.google.com/open-source/gsoc/

This time I worked on proposal to create an rest api and ui for JBoss Unified KIE Server.
Idea details

KIE Management Application (with REST api and UI)

Status: Final
Summary of idea: Build management extension and UI for KIE Server
The project is about creating management extension to KIE Server (lightweight embeddable rule, process execution server) to manage it remotely. Typical management operations are:
- manage containers (deploy/undeploy, upgrade etc)
- view process instances and perform administration actions on them like cancelling, migrating etc
- view tasks as admin - delegate, forward, alter properties
- view jobs and perform admin operations on them like cancel, restart failed jobs etc
Majority of the work will be buildiing fully featured UI with lightweight technology - prefferebly with AngularJS as both KIE Server has sample app and patternfly has set of UI directives for angular.
Knowledge prerequisite: Java, AngularJS, REST, knowledge of KIE platform (drools, jbpm, dashbuilder) is an advantage but not mandatory
Skill level: Intermediate
Contact(s) / potential mentors(s): Maciej Swiderski (mswiders@redhat.com)
Associated JBoss community project(s): KIE (Drools, jBPM, Dashbuilder), patterfly


This time I collarabated with menor and created an proposal.

Comments

Popular posts from this blog

REST VS SOAP

SOAP and REST both allow you to create your own API. API stands for Application Programming Interface. It makes it possible to transfer data from an application to other applications. An API receives requests and sends back responses through internet protocols such as HTTP, SMTP, and others.  Many popular websites provide public APIs for their users, for example, Google Maps has a  public REST API  that lets you customize Google Maps with your own content. There are also many APIs that have been created by companies for internal use. There are significant differences between SOAP and RESTful web services. The bullets below break down the features of each web service based on personal experience. REST RESTful web services are stateless. You can test this condition by restarting the server and checking if interactions survive. For most servers, RESTful web services provide a good caching infrastructure over an HTTP GET method. This can improve the performance...

SVN to GIT Migration with revision history

This blog explains the process I have followed while moving one of code branch of one of the projects to Gitlab. SVN to Git migration can be done using the git-svn command in Git.  Documentation about this command can be found from here. https://git-scm.com/docs/git-svn My Company svn repository can be accessed using two ways svn+ssh://192.168.x.x/usr/local/ svnroot/branches/PROJECT/PROJECT_BRANCH http://svn.companyName.net/repos/svnroot/branches/ PROJECT/PROJECT_BRANCH SVN to GIT migration can be done using one of the above-mentioned URLs.  Git can be installed and configured to use its inbuilt SSH client or third party ssh client ( https://6xgate.github.io/TortoisePlink/ ) First of all, this process should be run in a server where the system does not go idle. I have tried this on my PC. But when I have locked the PC, it crashes. Therefore I have tried this in one of our internal server. I have tried to get SVN revision history when the P...

Java 11 Modularity and Spring REST

I have recently started working on creating a REST API for a client project.  I was using Java 8 for my past developments. Since Java 11 was introduced in the last September  (https://en.wikipedia.org/wiki/Java_version_history) I thought of developing the REST API in Java 11. Java 11 is having major changes after Java 8. Java 11 is having a concept of modules (This was introduced after Java 9). Several libraries are acting as separate modules. Those are not included in JDK and those have to be imported separately. Ref : http://openjdk.java.net/jeps/261 (I have experienced this in JBoss7 also. They were using the module system and each service can specify which modules which are using. Those modules can be manually configured by the user.) One example is that you have to import the Java fx library separately (For GUI). Java-Fx is decoupled from JDK. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx -->   ...