mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-02-20 17:52:47 +00:00
This commit includes a chunk of RIM code and includes xjc generated code
however it doesn't use jakarta instead of javax.
This commit is contained in:
parent
b4328e1288
commit
d1b60c8c87
@ -30,7 +30,7 @@ public abstract class AbstractEntity implements Serializable {
|
||||
|
||||
@Id
|
||||
@Column(name = "id")
|
||||
@GeneratedValue(generator = "uuid2", strategy= GenerationType.AUTO)
|
||||
@GeneratedValue(generator = "uuid2", strategy=GenerationType.AUTO)
|
||||
@Getter
|
||||
private UUID id;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
package hirs.attestationca.portal.entity.manager;
|
||||
|
||||
import hirs.attestationca.portal.entity.userdefined.Device;
|
||||
import org.springframework.data.repository.CrudRepository;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -14,7 +14,7 @@ public class SettingsServiceImpl {
|
||||
|
||||
@Autowired
|
||||
private SettingsRepository repository;
|
||||
|
||||
|
||||
public SupplyChainSettings updateSettings(SupplyChainSettings settings) {
|
||||
SupplyChainSettings existing = repository.findByName(settings.getName());
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user