Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sso
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
曲欣亮
sso
Commits
4c77ea8e
Commit
4c77ea8e
authored
Jul 11, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
4d972838
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
0 deletions
+51
-0
WsConfig.java
src/main/java/com/egolm/sso/config/WsConfig.java
+9
-0
DNDeletionService.java
...com/egolm/sso/services/dn_deletion/DNDeletionService.java
+12
-0
DNDeletionServiceImpl.java
...egolm/sso/services/dn_deletion/DNDeletionServiceImpl.java
+17
-0
Z_MT_SD_010_SO_DN_DELETION.java
.../sso/services/dn_deletion/Z_MT_SD_010_SO_DN_DELETION.java
+13
-0
No files found.
src/main/java/com/egolm/sso/config/WsConfig.java
View file @
4c77ea8e
...
@@ -20,6 +20,7 @@ import org.springframework.context.annotation.Bean;
...
@@ -20,6 +20,7 @@ import org.springframework.context.annotation.Bean;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
com.egolm.sso.services.confirm_quotation.ConfirmQuotationService
;
import
com.egolm.sso.services.confirm_quotation.ConfirmQuotationService
;
import
com.egolm.sso.services.dn_deletion.DNDeletionService
;
import
com.egolm.sso.services.material_master.MaterialMasterService
;
import
com.egolm.sso.services.material_master.MaterialMasterService
;
import
com.egolm.sso.services.prforma_invoice.PrformaInvoiceService
;
import
com.egolm.sso.services.prforma_invoice.PrformaInvoiceService
;
import
com.egolm.sso.services.price_list.PriceListService
;
import
com.egolm.sso.services.price_list.PriceListService
;
...
@@ -75,6 +76,14 @@ public class WsConfig {
...
@@ -75,6 +76,14 @@ public class WsConfig {
return
endpoint
;
return
endpoint
;
}
}
@Bean
public
Endpoint
getShippingNotificationPoint
(
DNDeletionService
deletionService
)
{
EndpointImpl
endpoint
=
new
EndpointImpl
(
bus
,
deletionService
);
endpoint
.
setInInterceptors
(
Arrays
.
asList
(
authInterceptor
));
endpoint
.
publish
(
"/dn_deletion"
);
return
endpoint
;
}
@Value
(
"${wsUsername}"
)
@Value
(
"${wsUsername}"
)
private
String
wsUername
;
private
String
wsUername
;
...
...
src/main/java/com/egolm/sso/services/dn_deletion/DNDeletionService.java
0 → 100644
View file @
4c77ea8e
package
com
.
egolm
.
sso
.
services
.
dn_deletion
;
import
javax.jws.WebMethod
;
import
javax.jws.WebService
;
@WebService
(
targetNamespace
=
"http://dn_deletion.sso.egolm.com"
)
public
interface
DNDeletionService
{
@WebMethod
public
void
execute
(
Z_MT_SD_010_SO_DN_DELETION
Z_MT_SD_010_SO_DN_DELETION
);
}
src/main/java/com/egolm/sso/services/dn_deletion/DNDeletionServiceImpl.java
0 → 100644
View file @
4c77ea8e
package
com
.
egolm
.
sso
.
services
.
dn_deletion
;
import
javax.jws.WebService
;
import
org.springframework.stereotype.Component
;
@Component
@WebService
(
serviceName
=
"DNDeletionService"
,
targetNamespace
=
"http://dn_deletion.sso.egolm.com"
,
endpointInterface
=
"com.egolm.sso.services.dn_deletion.DNDeletionService"
)
public
class
DNDeletionServiceImpl
implements
DNDeletionService
{
@Override
public
void
execute
(
Z_MT_SD_010_SO_DN_DELETION
Z_MT_SD_010_SO_DN_DELETION
)
{
// TODO Auto-generated method stub
}
}
src/main/java/com/egolm/sso/services/dn_deletion/Z_MT_SD_010_SO_DN_DELETION.java
0 → 100644
View file @
4c77ea8e
package
com
.
egolm
.
sso
.
services
.
dn_deletion
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlRootElement
;
import
javax.xml.bind.annotation.XmlType
;
@XmlType
(
name
=
"Z_MT_SD_010_SO_DN_DELETION"
)
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"Z_MT_SD_010_SO_DN_DELETION"
)
public
class
Z_MT_SD_010_SO_DN_DELETION
{
}
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