Skip to content

Commit bfe558f

Browse files
committed
feat: update to population
Signed-off-by: Otavio Santana <[email protected]>
1 parent 7ab6db9 commit bfe558f

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,5 @@
1414
*/
1515
package org.eclipse.jnosql.databases.tinkerpop.mapping;
1616

17-
import org.eclipse.jnosql.databases.tinkerpop.mapping.entities.Magazine;
18-
19-
public interface Newsstand extends TinkerPopRepository<Magazine, String> {
17+
public class NewsstandTest {
2018
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
3+
* All rights reserved. This program and the accompanying materials
4+
* are made available under the terms of the Eclipse Public License v1.0
5+
* and Apache License v2.0 which accompanies this distribution.
6+
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7+
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
8+
*
9+
* You may elect to redistribute this code under either of these licenses.
10+
*
11+
* Contributors:
12+
*
13+
* Otavio Santana
14+
*/
15+
package org.eclipse.jnosql.databases.tinkerpop.mapping;
16+
17+
import jakarta.data.repository.Repository;
18+
import org.eclipse.jnosql.databases.tinkerpop.mapping.entities.Human;
19+
20+
@Repository
21+
public interface Population extends TinkerPopRepository<Human, String> {
22+
}

0 commit comments

Comments
 (0)