Skip to content

Commit

Permalink
Remove WS (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 committed Jan 10, 2022
1 parent a4350b1 commit 6dd8918
Show file tree
Hide file tree
Showing 19 changed files with 0 additions and 878 deletions.
11 changes: 0 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,17 +202,6 @@
<artifactId>quarkus-container-image-jib</artifactId>
</dependency>

<!--Websockets-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-websockets</artifactId>
</dependency>

<!--Camel-->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package io.github.project.openubl.ublhub.models.jpa.entities;

import io.github.project.openubl.ublhub.models.ErrorType;
import io.github.project.openubl.ublhub.models.jpa.entities.listeners.UBLDocumentEntityListener;
import org.hibernate.annotations.Type;

import javax.persistence.*;
Expand All @@ -29,7 +28,6 @@

@Entity
@Table(name = "ubl_document")
@EntityListeners(UBLDocumentEntityListener.class)
public class UBLDocumentEntity extends BaseEntity {

@Id
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@
*/

import io.github.project.openubl.ublhub.builder.XMLBuilderManager;
import io.github.project.openubl.ublhub.events.BroadcasterEventManager;
import io.github.project.openubl.ublhub.exceptions.NoNamespaceException;
import io.github.project.openubl.ublhub.files.FilesMutiny;
import io.github.project.openubl.ublhub.idm.input.InputTemplateRepresentation;
import io.github.project.openubl.ublhub.keys.KeyManager;
import io.github.project.openubl.ublhub.models.DocumentFilterModel;
import io.github.project.openubl.ublhub.models.PageBean;
Expand All @@ -63,7 +61,6 @@

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import javax.validation.ConstraintViolationException;
import javax.validation.constraints.NotNull;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
Expand All @@ -88,11 +85,6 @@ public class DocumentResource {
@Inject
SchedulerManager schedulerManager;

// Needed to not remove BroadcasterEventManager at build-time
// https://github.com/quarkusio/quarkus/issues/6948
@Inject
BroadcasterEventManager broadcasterEventManager;

@Inject
NamespaceRepository namespaceRepository;

Expand Down

This file was deleted.

Loading

0 comments on commit 6dd8918

Please sign in to comment.