Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
browser-backend
Project
Project
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
Administrator
browser-backend
Commits
bc4d726b
Commit
bc4d726b
authored
May 06, 2020
by
renjie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev-zrj' into 'staging'
proxyport See merge request
!35
parents
30ce0030
88c46ed4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
IpResource.java
...a/com/edgec/browserbackend/browser/domain/IpResource.java
+3
-3
IpResourceDto.java
...a/com/edgec/browserbackend/browser/dto/IpResourceDto.java
+3
-3
No files found.
src/main/java/com/edgec/browserbackend/browser/domain/IpResource.java
View file @
bc4d726b
...
...
@@ -41,7 +41,7 @@ public class IpResource implements Serializable {
private
String
proxyUsername
;
private
String
proxyPassword
;
private
String
proxyprotocol
;
private
String
proxyport
;
private
List
<
String
>
proxyport
;
private
String
shopId
;
private
String
shopName
;
...
...
@@ -287,11 +287,11 @@ public class IpResource implements Serializable {
this
.
specialLine
=
specialLine
;
}
public
String
getProxyport
()
{
public
List
<
String
>
getProxyport
()
{
return
proxyport
;
}
public
void
setProxyport
(
String
proxyport
)
{
public
void
setProxyport
(
List
<
String
>
proxyport
)
{
this
.
proxyport
=
proxyport
;
}
...
...
src/main/java/com/edgec/browserbackend/browser/dto/IpResourceDto.java
View file @
bc4d726b
...
...
@@ -29,7 +29,7 @@ public class IpResourceDto {
private
String
proxyUsername
;
private
String
proxyPassword
;
private
String
proxyprotocol
;
private
String
proxyport
;
private
List
<
String
>
proxyport
;
public
IpResourceDto
(){
}
...
...
@@ -195,11 +195,11 @@ public class IpResourceDto {
this
.
specialLine
=
specialLine
;
}
public
String
getProxyport
()
{
public
List
<
String
>
getProxyport
()
{
return
proxyport
;
}
public
void
setProxyport
(
String
proxyport
)
{
public
void
setProxyport
(
List
<
String
>
proxyport
)
{
this
.
proxyport
=
proxyport
;
}
...
...
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