Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.restservice;

import javax.ws.rs.Consumes;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.restservice;

import javax.ws.rs.core.Response;
Expand All @@ -11,11 +6,6 @@

import com.sarf.service.SarfServiceImpl;


/**
* @author mokhan
*
*/
public class SarfRestServiceImpl implements SarfRestService {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.domain;

import java.io.Serializable;
Expand All @@ -15,10 +10,6 @@
import javax.persistence.Table;
import javax.xml.bind.annotation.XmlRootElement;

/**
* @author mokhan
*
*/
@Entity
@Table(name = "employee")
public class Employee implements Serializable {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.repository;

import org.springframework.data.domain.Page;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.restservice;

import java.util.List;
Expand All @@ -17,10 +12,6 @@

import com.sarf.domain.Employee;

/**
* @author mokhan
*
*/
@Path("/employee-service/")
@Produces(MediaType.APPLICATION_JSON)
public interface EmployeeRestService {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.restservice;

import java.util.List;
Expand All @@ -14,10 +9,6 @@
import com.sarf.domain.Employee;
import com.sarf.service.EmployeeService;

/**
* @author mokhan
*
*/
@Service
@Transactional
public class EmployeeRestServiceImpl implements EmployeeRestService {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.service;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* Amadeus Confidential Information:
* Unauthorized use and disclosure strictly forbidden.
* @1998-2012 - Amadeus s.a.s - All Rights Reserved.
*/
package com.sarf.service;

import java.util.List;
Expand Down