Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BackEnd-V2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joel Andres Molina Velez
BackEnd-V2
Commits
d330c304
Commit
d330c304
authored
Jun 18, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SE AGREGAN LOS SERVICIOS DE UzyTPerfil
parent
04289aa5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
116 additions
and
0 deletions
+116
-0
UzyTPerfilController.java
...ovilidad/MovilidadWS/Controller/UzyTPerfilController.java
+51
-0
IServiceUzyTPerfil.java
...ad/MovilidadWS/Service/UzyTPerfil/IServiceUzyTPerfil.java
+18
-0
ServiceUzyTPerfil.java
...dad/MovilidadWS/Service/UzyTPerfil/ServiceUzyTPerfil.java
+47
-0
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTPerfilController.java
0 → 100644
View file @
d330c304
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Controller
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTPerfil
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTPerfilMenu
;
import
ec.edu.espe.movilidad.MovilidadWS.Service.UzyTPerfil.IServiceUzyTPerfil
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.List
;
import
static
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Constant
.
GlobalConstants
.
V1_API_VERSION
;
@RestController
@CrossOrigin
(
origins
=
"*"
)
@RequestMapping
(
V1_API_VERSION
+
"/perfil"
)
public
class
UzyTPerfilController
{
@Autowired
IServiceUzyTPerfil
serviceUzyTPerfil
;
@GetMapping
(
"/exampleFindId/{id}"
)
public
ResponseEntity
<
ModelUzyTPerfil
>
ListarPorID
(
@PathVariable
Long
id
)
{
return
new
ResponseEntity
<>(
serviceUzyTPerfil
.
ListarPorID
(
id
),
HttpStatus
.
OK
);
}
@GetMapping
(
"/getAll"
)
public
ResponseEntity
<
List
<
ModelUzyTPerfil
>>
ListarRegistros
()
{
return
new
ResponseEntity
<>(
serviceUzyTPerfil
.
ListarRegistros
(),
HttpStatus
.
OK
);
}
@PostMapping
(
"/guardar"
)
public
ResponseEntity
<
ModelUzyTPerfil
>
guardar
(
@RequestBody
ModelUzyTPerfil
modelUzyTPerfil
)
{
return
new
ResponseEntity
<>(
serviceUzyTPerfil
.
guardar
(
modelUzyTPerfil
),
HttpStatus
.
OK
);
}
@PutMapping
(
"/editar/{id}"
)
public
ResponseEntity
<
ModelUzyTPerfil
>
editar
(
@PathVariable
Long
id
,
@RequestBody
ModelUzyTPerfil
modelUzyTPerfil
)
{
return
new
ResponseEntity
<>(
serviceUzyTPerfil
.
editar
(
id
,
modelUzyTPerfil
),
HttpStatus
.
OK
);
}
@DeleteMapping
(
"/eliminar/{id}"
)
public
ResponseEntity
<
Void
>
eliminar
(
@PathVariable
Long
id
)
{
serviceUzyTPerfil
.
eliminar
(
id
);
return
ResponseEntity
.
ok
().
build
();
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTPerfil/IServiceUzyTPerfil.java
0 → 100644
View file @
d330c304
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTPerfil
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTPerfil
;
import
java.util.List
;
public
interface
IServiceUzyTPerfil
{
public
ModelUzyTPerfil
ListarPorID
(
Long
id
);
public
List
<
ModelUzyTPerfil
>
ListarRegistros
();
public
ModelUzyTPerfil
guardar
(
ModelUzyTPerfil
modelUzyTPerfil
);
public
ModelUzyTPerfil
editar
(
Long
id
,
ModelUzyTPerfil
modelUzyTPerfil
);
void
eliminar
(
Long
id
);
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTPerfil/ServiceUzyTPerfil.java
0 → 100644
View file @
d330c304
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTPerfil
;
import
ec.edu.espe.movilidad.MovilidadWS.Dao.DaoUzyTPerfil
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTMenu
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTPerfil
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
@Service
public
class
ServiceUzyTPerfil
implements
IServiceUzyTPerfil
{
@Autowired
DaoUzyTPerfil
daoUzyTPerfil
;
@Override
public
ModelUzyTPerfil
ListarPorID
(
Long
id
)
{
return
daoUzyTPerfil
.
findById
(
id
).
get
();
}
@Override
public
List
<
ModelUzyTPerfil
>
ListarRegistros
()
{
return
daoUzyTPerfil
.
findAll
();
}
@Override
public
ModelUzyTPerfil
guardar
(
ModelUzyTPerfil
modelUzyTPerfil
)
{
return
daoUzyTPerfil
.
save
(
modelUzyTPerfil
);
}
@Override
public
ModelUzyTPerfil
editar
(
Long
id
,
ModelUzyTPerfil
modelUzyTPerfil
)
{
ModelUzyTPerfil
dato
=
daoUzyTPerfil
.
findById
(
id
).
get
();
//.orElseThrow(()->new ControlExcepciones("No existe el registro con el ID : " + id));
//Seteamos los nuevos datos del registro
dato
.
setUzytperfilNombre
(
modelUzyTPerfil
.
getUzytperfilNombre
());
ModelUzyTPerfil
datoActualizado
=
daoUzyTPerfil
.
save
(
dato
);
return
datoActualizado
;
}
@Override
public
void
eliminar
(
Long
id
)
{
ModelUzyTPerfil
dato
=
daoUzyTPerfil
.
findById
(
id
).
get
();
//.orElseThrow(() -daoUzyTMenuntrolExcepciones("No existe el registro con el ID : " + id));
daoUzyTPerfil
.
delete
(
dato
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment