Files
spring-data-examples/jpa/aot-generation/src/main/java/example/springdata/aot/Post.java
Christoph Strobl 5a234bcef3 Add AOT Repositories example.
Closes #695
2025-05-08 10:47:37 +02:00

69 lines
1.5 KiB
Java

/*
* Copyright 2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.springdata.aot;
import java.time.Instant;
import java.time.temporal.ChronoUnit;
import java.util.Random;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
/**
* @author Christoph Strobl
* @since 2025/01
*/
@Entity
public class Post {
@Id
@GeneratedValue
private Long id;
private String message;
private Instant date;
public Post() {
}
public Post(String message) {
this.message = message;
this.date = Instant.now().minus(new Random().nextLong(100), ChronoUnit.MINUTES);
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public Instant getDate() {
return date;
}
public void setDate(Instant date) {
this.date = date;
}
@Override
public String toString() {
return message;
}
}