-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from indigo-dc/spring-boot
codestyle
- Loading branch information
Showing
17 changed files
with
449 additions
and
407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ target/ | |
.project | ||
.settings/ | ||
bin/ | ||
|
||
.checkstyle |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
/* | ||
* Copyright 2016 Karlsruhe Institute of Technology (KIT) | ||
* | ||
* 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 | ||
*/ | ||
|
||
package org.snia.cdmiserver.dao; | ||
|
||
import org.snia.cdmiserver.model.CdmiObject; | ||
|
||
public interface CdmiObjectDao { | ||
|
||
public CdmiObject createCdmiObject(CdmiObject cdmiObject); | ||
public CdmiObject createCdmiObject(CdmiObject cdmiObject); | ||
|
||
public CdmiObject getCdmiObject(String objectId); | ||
public CdmiObject getCdmiObject(String objectId); | ||
|
||
public CdmiObject updateCdmiObject(CdmiObject cdmiObject); | ||
public CdmiObject updateCdmiObject(CdmiObject cdmiObject); | ||
|
||
public CdmiObject deleteCdmiObject(String objectId); | ||
public CdmiObject deleteCdmiObject(String objectId); | ||
|
||
} |
Oops, something went wrong.