Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
548126d9
Commit
548126d9
authored
Jun 17, 2014
by
Thomas Bosch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RC1
parent
3824317a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
68 deletions
+18
-68
pom.xml
pom.xml
+18
-0
Application.java
...ain/java/de/codecentric/boot/admin/model/Application.java
+0
-68
No files found.
pom.xml
View file @
548126d9
...
...
@@ -13,6 +13,11 @@
</properties>
<dependencies>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-starter-admin-client
</artifactId>
<version>
1.0.0.RC1
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<version>
${spring-boot.version}
</version>
...
...
@@ -57,6 +62,19 @@
<scope>
test
</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>
repo
</id>
<releases>
<enabled>
true
</enabled>
<checksumPolicy>
ignore
</checksumPolicy>
</releases>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
<url>
https://raw.githubusercontent.com/dickerpulli/maven-repo/master
</url>
</repository>
</repositories>
<build>
<finalName>
${project.artifactId}
</finalName>
<resources>
...
...
src/main/java/de/codecentric/boot/admin/model/Application.java
deleted
100644 → 0
View file @
3824317a
package
de
.
codecentric
.
boot
.
admin
.
model
;
import
java.io.Serializable
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
public
class
Application
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
private
String
id
;
private
String
url
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getUrl
()
{
return
url
;
}
public
void
setUrl
(
String
url
)
{
this
.
url
=
url
;
}
@Override
public
String
toString
()
{
return
ToStringBuilder
.
reflectionToString
(
this
,
ToStringStyle
.
SHORT_PREFIX_STYLE
);
}
@Override
public
int
hashCode
()
{
final
int
prime
=
31
;
int
result
=
1
;
result
=
prime
*
result
+
((
id
==
null
)
?
0
:
id
.
hashCode
());
result
=
prime
*
result
+
((
url
==
null
)
?
0
:
url
.
hashCode
());
return
result
;
}
@Override
public
boolean
equals
(
Object
obj
)
{
if
(
this
==
obj
)
return
true
;
if
(
obj
==
null
)
return
false
;
if
(
getClass
()
!=
obj
.
getClass
())
return
false
;
Application
other
=
(
Application
)
obj
;
if
(
id
==
null
)
{
if
(
other
.
id
!=
null
)
return
false
;
}
else
if
(!
id
.
equals
(
other
.
id
))
return
false
;
if
(
url
==
null
)
{
if
(
other
.
url
!=
null
)
return
false
;
}
else
if
(!
url
.
equals
(
other
.
url
))
return
false
;
return
true
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment