Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed .gitignore and added missing Neo4J classes.
  • Loading branch information
odrotbohm committed Apr 10, 2012
1 parent 58aba0a commit 5878c04
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .gitignore
@@ -1,6 +1,6 @@
neo4j/
target/
.settings/
.project
.classpath
.springBeans
/neo4j
/target
/.settings
/.project
/.classpath
/.springBeans
31 changes: 31 additions & 0 deletions src/main/java/org/springframework/data/example/neo4j/Movie.java
@@ -0,0 +1,31 @@
/*
* Copyright 2012 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
*
* http://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 org.springframework.data.example.neo4j;

import org.springframework.data.neo4j.annotation.GraphId;
import org.springframework.data.neo4j.annotation.NodeEntity;

/**
*
* @author Oliver Gierke
*/
@NodeEntity
public class Movie {

@GraphId
public Long id;
public String title;
}
@@ -0,0 +1,29 @@
/*
* Copyright 2012 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
*
* http://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 org.springframework.data.example.neo4j;

import java.util.List;

import org.springframework.data.neo4j.repository.GraphRepository;

/**
*
* @author Oliver Gierke
*/
public interface MovieRepository extends GraphRepository<Movie> {

List<Movie> findByTitle(String title);
}

0 comments on commit 5878c04

Please sign in to comment.