getUsers() {
- return users;
- }
-}
diff --git a/guest/webservices/rest-server/src/main/resources/logback.xml b/guest/webservices/rest-server/src/main/resources/logback.xml
deleted file mode 100644
index 7d900d8ea8..0000000000
--- a/guest/webservices/rest-server/src/main/resources/logback.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/guest/webservices/rest-server/src/test/java/com/stackify/services/UserServiceLiveTest.java b/guest/webservices/rest-server/src/test/java/com/stackify/services/UserServiceLiveTest.java
deleted file mode 100644
index be3992b7f7..0000000000
--- a/guest/webservices/rest-server/src/test/java/com/stackify/services/UserServiceLiveTest.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.stackify.services;
-
-import org.junit.Test;
-
-import io.restassured.RestAssured;
-import static io.restassured.RestAssured.*;
-import static org.hamcrest.CoreMatchers.*;
-
-public class UserServiceLiveTest {
- @Test
- public void whenAddUser_thenGetUserOk() {
- RestAssured.baseURI = "http://localhost:8080/rest-server";
-
- //@formatter:off
-
- String json = "{\"email\":\"john@gmail.com\",\"name\":\"John\"}";
- given()
- .contentType("application/json")
- .body(json)
- .when()
- .post("/users")
- .then()
- .statusCode(200);
-
- when()
- .get("/users")
- .then()
- .contentType("application/json")
- .body("name", hasItem("John"))
- .body("email", hasItem("john@gmail.com"));
-
- //@formatter:on
- }
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/JAXWSClient.java b/guest/webservices/soap_client/src/main/java/com/stackify/JAXWSClient.java
deleted file mode 100644
index 5542fbde20..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/JAXWSClient.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.stackify;
-
-import com.stackify.services.DefaultUserImplService;
-import com.stackify.services.User;
-import com.stackify.services.UserService;
-import com.stackify.services.Users;
-
-public class JAXWSClient {
- public static void main(String[] args) {
- DefaultUserImplService service = new DefaultUserImplService();
- User user = new User();
- user.setEmail("john@gmail.com");
- user.setName("John");
- UserService port = service.getDefaultUserImplPort();
- port.addUser(user);
- Users users = port.getUsers();
- System.out.println(users.getUsers().iterator().next().getName());
- }
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/services/DefaultUserImplService.java b/guest/webservices/soap_client/src/main/java/com/stackify/services/DefaultUserImplService.java
deleted file mode 100644
index 821b969166..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/services/DefaultUserImplService.java
+++ /dev/null
@@ -1,94 +0,0 @@
-
-package com.stackify.services;
-
-import java.net.MalformedURLException;
-import java.net.URL;
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-import javax.xml.ws.WebEndpoint;
-import javax.xml.ws.WebServiceClient;
-import javax.xml.ws.WebServiceException;
-import javax.xml.ws.WebServiceFeature;
-
-
-/**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.2.9-b130926.1035
- * Generated source version: 2.2
- *
- */
-@WebServiceClient(name = "DefaultUserImplService", targetNamespace = "http://services.stackify.com/", wsdlLocation = "http://localhost:8080/users?wsdl")
-public class DefaultUserImplService
- extends Service
-{
-
- private final static URL DEFAULTUSERIMPLSERVICE_WSDL_LOCATION;
- private final static WebServiceException DEFAULTUSERIMPLSERVICE_EXCEPTION;
- private final static QName DEFAULTUSERIMPLSERVICE_QNAME = new QName("http://services.stackify.com/", "DefaultUserImplService");
-
- static {
- URL url = null;
- WebServiceException e = null;
- try {
- url = new URL("http://localhost:8080/users?wsdl");
- } catch (MalformedURLException ex) {
- e = new WebServiceException(ex);
- }
- DEFAULTUSERIMPLSERVICE_WSDL_LOCATION = url;
- DEFAULTUSERIMPLSERVICE_EXCEPTION = e;
- }
-
- public DefaultUserImplService() {
- super(__getWsdlLocation(), DEFAULTUSERIMPLSERVICE_QNAME);
- }
-
- public DefaultUserImplService(WebServiceFeature... features) {
- super(__getWsdlLocation(), DEFAULTUSERIMPLSERVICE_QNAME, features);
- }
-
- public DefaultUserImplService(URL wsdlLocation) {
- super(wsdlLocation, DEFAULTUSERIMPLSERVICE_QNAME);
- }
-
- public DefaultUserImplService(URL wsdlLocation, WebServiceFeature... features) {
- super(wsdlLocation, DEFAULTUSERIMPLSERVICE_QNAME, features);
- }
-
- public DefaultUserImplService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
-
- public DefaultUserImplService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
- super(wsdlLocation, serviceName, features);
- }
-
- /**
- *
- * @return
- * returns UserService
- */
- @WebEndpoint(name = "DefaultUserImplPort")
- public UserService getDefaultUserImplPort() {
- return super.getPort(new QName("http://services.stackify.com/", "DefaultUserImplPort"), UserService.class);
- }
-
- /**
- *
- * @param features
- * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
- * @return
- * returns UserService
- */
- @WebEndpoint(name = "DefaultUserImplPort")
- public UserService getDefaultUserImplPort(WebServiceFeature... features) {
- return super.getPort(new QName("http://services.stackify.com/", "DefaultUserImplPort"), UserService.class, features);
- }
-
- private static URL __getWsdlLocation() {
- if (DEFAULTUSERIMPLSERVICE_EXCEPTION!= null) {
- throw DEFAULTUSERIMPLSERVICE_EXCEPTION;
- }
- return DEFAULTUSERIMPLSERVICE_WSDL_LOCATION;
- }
-
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/services/ObjectFactory.java b/guest/webservices/soap_client/src/main/java/com/stackify/services/ObjectFactory.java
deleted file mode 100644
index d992521d9f..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/services/ObjectFactory.java
+++ /dev/null
@@ -1,48 +0,0 @@
-
-package com.stackify.services;
-
-import javax.xml.bind.annotation.XmlRegistry;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the com.stackify.services package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.stackify.services
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link User }
- *
- */
- public User createUser() {
- return new User();
- }
-
- /**
- * Create an instance of {@link Users }
- *
- */
- public Users createUsers() {
- return new Users();
- }
-
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/services/User.java b/guest/webservices/soap_client/src/main/java/com/stackify/services/User.java
deleted file mode 100644
index d9d517f83d..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/services/User.java
+++ /dev/null
@@ -1,87 +0,0 @@
-
-package com.stackify.services;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
Java class for user complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType name="user">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "user", propOrder = {
- "email",
- "name"
-})
-public class User {
-
- protected String email;
- protected String name;
-
- /**
- * Gets the value of the email property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getEmail() {
- return email;
- }
-
- /**
- * Sets the value of the email property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setEmail(String value) {
- this.email = value;
- }
-
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getName() {
- return name;
- }
-
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setName(String value) {
- this.name = value;
- }
-
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/services/UserService.java b/guest/webservices/soap_client/src/main/java/com/stackify/services/UserService.java
deleted file mode 100644
index 87ab1f2f75..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/services/UserService.java
+++ /dev/null
@@ -1,47 +0,0 @@
-
-package com.stackify.services;
-
-import javax.jws.WebMethod;
-import javax.jws.WebParam;
-import javax.jws.WebResult;
-import javax.jws.WebService;
-import javax.jws.soap.SOAPBinding;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.ws.Action;
-
-
-/**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.2.9-b130926.1035
- * Generated source version: 2.2
- *
- */
-@WebService(name = "UserService", targetNamespace = "http://services.stackify.com/")
-@SOAPBinding(style = SOAPBinding.Style.RPC)
-@XmlSeeAlso({
- ObjectFactory.class
-})
-public interface UserService {
-
-
- /**
- *
- * @param arg0
- */
- @WebMethod
- @Action(input = "http://services.stackify.com/UserService/addUserRequest", output = "http://services.stackify.com/UserService/addUserResponse")
- public void addUser(
- @WebParam(name = "arg0", partName = "arg0")
- User arg0);
-
- /**
- *
- * @return
- * returns com.stackify.services.Users
- */
- @WebMethod
- @WebResult(partName = "return")
- @Action(input = "http://services.stackify.com/UserService/getUsersRequest", output = "http://services.stackify.com/UserService/getUsersResponse")
- public Users getUsers();
-
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/services/Users.java b/guest/webservices/soap_client/src/main/java/com/stackify/services/Users.java
deleted file mode 100644
index bde0e47b11..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/services/Users.java
+++ /dev/null
@@ -1,69 +0,0 @@
-
-package com.stackify.services;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for users complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType name="users">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="users" type="{http://services.stackify.com/}user" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "users", propOrder = {
- "users"
-})
-public class Users {
-
- @XmlElement(nillable = true)
- protected List users;
-
- /**
- * Gets the value of the users property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the users property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getUsers().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link User }
- *
- *
- */
- public List getUsers() {
- if (users == null) {
- users = new ArrayList();
- }
- return this.users;
- }
-
-}
diff --git a/guest/webservices/soap_client/src/main/java/com/stackify/services/package-info.java b/guest/webservices/soap_client/src/main/java/com/stackify/services/package-info.java
deleted file mode 100644
index af6d2bc25e..0000000000
--- a/guest/webservices/soap_client/src/main/java/com/stackify/services/package-info.java
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://services.stackify.com/")
-package com.stackify.services;
diff --git a/guest/webservices/soap_client/src/main/resources/logback.xml b/guest/webservices/soap_client/src/main/resources/logback.xml
deleted file mode 100644
index 7d900d8ea8..0000000000
--- a/guest/webservices/soap_client/src/main/resources/logback.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/guest/webservices/soap_example/src/main/java/com/stackify/ServicePublisher.java b/guest/webservices/soap_example/src/main/java/com/stackify/ServicePublisher.java
deleted file mode 100644
index 3a10b6e285..0000000000
--- a/guest/webservices/soap_example/src/main/java/com/stackify/ServicePublisher.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.stackify;
-
-import javax.xml.ws.Endpoint;
-
-import com.stackify.services.DefaultUserImpl;
-
-public class ServicePublisher {
- public static void main(String[] args) {
- Endpoint.publish("http://localhost:8080/users", new DefaultUserImpl());
- }
-}
diff --git a/guest/webservices/soap_example/src/main/java/com/stackify/models/User.java b/guest/webservices/soap_example/src/main/java/com/stackify/models/User.java
deleted file mode 100644
index 1a9741154d..0000000000
--- a/guest/webservices/soap_example/src/main/java/com/stackify/models/User.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.stackify.models;
-
-public class User {
- private String email;
- private String name;
-
- public User() {
- }
-
- public User(String email, String name) {
- super();
- this.email = email;
- this.name = name;
- }
-
- public String getEmail() {
- return email;
- }
-
- public void setEmail(String email) {
- this.email = email;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
-}
diff --git a/guest/webservices/soap_example/src/main/java/com/stackify/models/Users.java b/guest/webservices/soap_example/src/main/java/com/stackify/models/Users.java
deleted file mode 100644
index 2323a74614..0000000000
--- a/guest/webservices/soap_example/src/main/java/com/stackify/models/Users.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.stackify.models;
-
-import java.util.List;
-
-public class Users {
- List users;
-
- public List getUsers() {
- return users;
- }
-
- public void setUsers(List users) {
- this.users = users;
- }
-
-}
diff --git a/guest/webservices/soap_example/src/main/java/com/stackify/services/DefaultUserImpl.java b/guest/webservices/soap_example/src/main/java/com/stackify/services/DefaultUserImpl.java
deleted file mode 100644
index 87d7d646c1..0000000000
--- a/guest/webservices/soap_example/src/main/java/com/stackify/services/DefaultUserImpl.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.stackify.services;
-
-import java.util.ArrayList;
-
-import javax.jws.WebService;
-
-import com.stackify.models.User;
-import com.stackify.models.Users;
-
-@WebService(endpointInterface = "com.stackify.services.UserService")
-public class DefaultUserImpl implements UserService {
-
- ArrayList usersList = new ArrayList<>();
-
- @Override
- public void addUser(User user) {
- usersList.add(user);
- }
-
- @Override
- public Users getUsers() {
- Users users = new Users();
- users.setUsers(usersList);
- return users;
- }
-
-}
diff --git a/guest/webservices/soap_example/src/main/java/com/stackify/services/UserService.java b/guest/webservices/soap_example/src/main/java/com/stackify/services/UserService.java
deleted file mode 100644
index 8c57fbd061..0000000000
--- a/guest/webservices/soap_example/src/main/java/com/stackify/services/UserService.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.stackify.services;
-
-import javax.jws.WebMethod;
-import javax.jws.WebService;
-import javax.jws.soap.SOAPBinding;
-
-import com.stackify.models.User;
-import com.stackify.models.Users;
-
-@WebService
-@SOAPBinding(style = SOAPBinding.Style.RPC)
-public interface UserService {
-
- @WebMethod
- public void addUser(User user);
-
- @WebMethod
- public Users getUsers();
-}
diff --git a/guest/webservices/soap_example/src/main/resources/logback.xml b/guest/webservices/soap_example/src/main/resources/logback.xml
deleted file mode 100644
index 7d900d8ea8..0000000000
--- a/guest/webservices/soap_example/src/main/resources/logback.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/guest/webservices/spring-rest-service/WebContent/META-INF/MANIFEST.MF b/guest/webservices/spring-rest-service/WebContent/META-INF/MANIFEST.MF
deleted file mode 100644
index 254272e1c0..0000000000
--- a/guest/webservices/spring-rest-service/WebContent/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Class-Path:
-
diff --git a/guest/webservices/spring-rest-service/pom.xml b/guest/webservices/spring-rest-service/pom.xml
deleted file mode 100644
index 6243f09727..0000000000
--- a/guest/webservices/spring-rest-service/pom.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
- 4.0.0
- com.stackify
- spring-rest-service
- 0.0.1-SNAPSHOT
- spring-rest-service
- war
-
-
- org.springframework.boot
- spring-boot-starter-parent
- 1.5.4.RELEASE
-
-
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- org.springframework.boot
- spring-boot-starter-hateoas
-
-
- io.springfox
- springfox-swagger2
- ${springfox-swagger2.version}
-
-
- io.springfox
- springfox-swagger-ui
- ${springfox-swagger-ui.version}
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
-
-
-
- UTF-8
- UTF-8
- 1.8
- 2.7.0
- 2.7.0
-
-
-
\ No newline at end of file
diff --git a/guest/webservices/spring-rest-service/src/main/java/com/stackify/Application.java b/guest/webservices/spring-rest-service/src/main/java/com/stackify/Application.java
deleted file mode 100644
index b45ed8094f..0000000000
--- a/guest/webservices/spring-rest-service/src/main/java/com/stackify/Application.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.stackify;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-@SpringBootApplication
-public class Application {
-
- public static void main(String[] args) {
- SpringApplication.run(Application.class, args);
- }
-}
diff --git a/guest/webservices/spring-rest-service/src/main/java/com/stackify/config/SwaggerConfig.java b/guest/webservices/spring-rest-service/src/main/java/com/stackify/config/SwaggerConfig.java
deleted file mode 100644
index 0e9567b452..0000000000
--- a/guest/webservices/spring-rest-service/src/main/java/com/stackify/config/SwaggerConfig.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.stackify.config;
-
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-
-import springfox.documentation.builders.PathSelectors;
-import springfox.documentation.builders.RequestHandlerSelectors;
-import springfox.documentation.spi.DocumentationType;
-import springfox.documentation.spring.web.plugins.Docket;
-import springfox.documentation.swagger2.annotations.EnableSwagger2;
-
-@Configuration
-@EnableSwagger2
-public class SwaggerConfig {
- @Bean
- public Docket api() {
- return new Docket(DocumentationType.SWAGGER_2).select()
- .apis(RequestHandlerSelectors.basePackage("com.stackify.controllers"))
- .paths(PathSelectors.any())
- .build();
- }
-}
diff --git a/guest/webservices/spring-rest-service/src/main/java/com/stackify/controllers/UserController.java b/guest/webservices/spring-rest-service/src/main/java/com/stackify/controllers/UserController.java
deleted file mode 100644
index 361dbde38d..0000000000
--- a/guest/webservices/spring-rest-service/src/main/java/com/stackify/controllers/UserController.java
+++ /dev/null
@@ -1,52 +0,0 @@
-package com.stackify.controllers;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import org.springframework.hateoas.Link;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.MediaType;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.ResponseStatus;
-import org.springframework.web.bind.annotation.RestController;
-
-import com.stackify.models.User;
-import static org.springframework.hateoas.mvc.ControllerLinkBuilder.methodOn;
-import static org.springframework.hateoas.mvc.ControllerLinkBuilder.linkTo;
-
-@RestController
-public class UserController {
-
- private static List users = new ArrayList<>();
-
- @PostMapping(value = "/users", consumes = MediaType.APPLICATION_JSON_VALUE)
- @ResponseStatus(HttpStatus.CREATED)
- public void addUser(@RequestBody User user) {
- users.add(user);
- }
-
- @GetMapping("/users")
- public List getUsers() {
- users.forEach(user -> {
- Link selfLink = linkTo(methodOn(UserController.class).getUsers()).slash(user.getEmail())
- .withSelfRel();
- user.getLinks().clear();
- user.add(selfLink);
- });
- return users;
- }
-
- @GetMapping("/users/{email}")
- public User getUser(@PathVariable String email) {
- User us = users.stream()
- .filter(user -> !user.getEmail()
- .equals(email))
- .findAny()
- .orElse(null);
- return us;
- }
-
-}
diff --git a/guest/webservices/spring-rest-service/src/main/java/com/stackify/models/User.java b/guest/webservices/spring-rest-service/src/main/java/com/stackify/models/User.java
deleted file mode 100644
index b52e7f0f87..0000000000
--- a/guest/webservices/spring-rest-service/src/main/java/com/stackify/models/User.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.stackify.models;
-
-import org.springframework.hateoas.ResourceSupport;
-
-public class User extends ResourceSupport {
- private String email;
- private String name;
-
- public User() {
- }
-
- public User(String email, String name) {
- super();
- this.email = email;
- this.name = name;
- }
-
- public String getEmail() {
- return email;
- }
-
- public void setEmail(String email) {
- this.email = email;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
-}
diff --git a/guest/webservices/spring-rest-service/src/main/resources/logback.xml b/guest/webservices/spring-rest-service/src/main/resources/logback.xml
deleted file mode 100644
index 7d900d8ea8..0000000000
--- a/guest/webservices/spring-rest-service/src/main/resources/logback.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
-
\ No newline at end of file