Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fltrail
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fides
fltrail
Commits
6b247536
Commit
6b247536
authored
6 years ago
by
Thomas Schnaak
Browse files
Options
Downloads
Patches
Plain Diff
fix: changed interfaces
parent
94262250
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gemeinsamforschen/src/main/java/unipotsdam/gf/interfaces/IProjectDescription.java
+0
-67
0 additions, 67 deletions
...in/java/unipotsdam/gf/interfaces/IProjectDescription.java
with
0 additions
and
67 deletions
gemeinsamforschen/src/main/java/unipotsdam/gf/interfaces/IProjectDescription.java
deleted
100644 → 0
+
0
−
67
View file @
94262250
package
unipotsdam.gf.interfaces
;
import
java.util.ArrayList
;
/**
* Interface for Project Description
*/
public
interface
IProjectDescription
{
/**
* Save description to database
* @param description
*/
void
saveDescription
(
String
description
);
/**
* Add a new link to ProjectDescription
* @param link url of the link
* @param name name to shoe on website
*/
void
addLink
(
String
link
,
String
name
);
/**
* Delete link
* @param name name of the link
*/
void
deleteLink
(
String
name
);
/**
* Get name of the project
* @param projectId Id of the project
* @return name of the project
*/
String
getName
(
long
projectId
);
/**
* Get Description of the project
* @param projectId Id of the project
* @return Desription of the project
*/
String
getDescription
(
long
projectId
);
/**
* Get Lecturer of the project
* @param projectId Id of the project
* @return Lecturer of the project
*/
long
getLecturer
(
long
projectId
);
/**
* Get all Students of the project (Group)
* @param projectId Id of the Project
* @return Students of the project
*/
ArrayList
<
Long
>
getStudents
(
long
projectId
);
/**
* Get all Links of the project
* @param projectId Id of the Project
* @return all links of the project
*/
ArrayList
<
Long
>
getLinks
(
long
projectId
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment