Skip to content

Commit

Permalink
Added dummy entity classes
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-3-141 committed Aug 25, 2019
1 parent db3c0e0 commit 03cfc52
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
@EnableServiceException
@ComponentScan({
"org.apache.fineract.cn.importer.service.rest",
"org.apache.fineract.cn.importer.service.internal.command.handler"
})
@EnableFeignClients(basePackages = {"org.apache.fineract.cn.accounting.api.v1.client", "org.apache.fineract.cn.identity.api.v1.client"})
public class ImporterConfiguration extends WebMvcConfigurerAdapter {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.fineract.cn.importer.service.internal.repository;

import javax.persistence.Entity;
import javax.persistence.Id;

@Entity
public class DummyEntity {

@Id
private Long id;

public DummyEntity() {
super();
}

public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.fineract.cn.importer.service.internal.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface DummyRepository extends JpaRepository<DummyEntity, Long> {
}

0 comments on commit 03cfc52

Please sign in to comment.