Skip to content

Commit

Permalink
Aligns claimantService with modules in definition file.
Browse files Browse the repository at this point in the history
  • Loading branch information
stiehlrod committed Nov 14, 2024
1 parent 1067ef9 commit c14b98f
Showing 1 changed file with 22 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,34 @@ module FindPoaByParticipantId
key: 'return'
)
end
end

module FindAssignedFlashes
DEFINITION =
Action.new(
service: ClaimantWebService::DEFINITION,
name: 'findAssignedFlashes',
key: 'return'
##
# ClaimantServiceBean
#
module ClaimantServiceBean
DEFINITION =
Bean.new(
path: 'ClaimantServiceBean',
namespaces: Namespaces.new(
target: 'http://services.share.benefits.vba.va.gov/',
data: nil
)
end
)
end

module FindAssignedFlashes
DEFINITION =
Action.new(
service: ClaimantService::DEFINITION,
name: 'findAssignedFlashes',
key: 'return'
)

module AddFlash
DEFINITION =
Action.new(
service: ClaimantWebService::DEFINITION,
service: ClaimantService::DEFINITION,
name: 'addFlash',
key: 'return'
)
Expand Down

0 comments on commit c14b98f

Please sign in to comment.