From 3cf570de8f73c54f006d17ce9bce53b5f0771f7d Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Fri, 14 Apr 2017 21:04:37 +0300 Subject: [PATCH 01/17] add feefback entity --- .../java/io/delivery/config/AppConfig.java | 8 +++ .../java/io/delivery/dao/FeedBackDao.java | 7 +++ .../io/delivery/dao/impl/FeedBackDaoImpl.java | 10 ++++ .../java/io/delivery/entity/FeedBack.java | 58 +++++++++++++++++++ .../io/delivery/service/FeedbackService.java | 35 +++++++++++ .../io/delivery/service/impl/FeedBackImp.java | 38 ++++++++++++ 6 files changed, 156 insertions(+) create mode 100644 src/main/java/io/delivery/dao/FeedBackDao.java create mode 100644 src/main/java/io/delivery/dao/impl/FeedBackDaoImpl.java create mode 100644 src/main/java/io/delivery/entity/FeedBack.java create mode 100644 src/main/java/io/delivery/service/FeedbackService.java create mode 100644 src/main/java/io/delivery/service/impl/FeedBackImp.java diff --git a/src/main/java/io/delivery/config/AppConfig.java b/src/main/java/io/delivery/config/AppConfig.java index 406aa9b..10951b7 100644 --- a/src/main/java/io/delivery/config/AppConfig.java +++ b/src/main/java/io/delivery/config/AppConfig.java @@ -1,8 +1,11 @@ package io.delivery.config; import io.delivery.dao.DocumentDao; +import io.delivery.dao.FeedBackDao; import io.delivery.dao.impl.DocumentDaoImpl; +import io.delivery.dao.impl.FeedBackDaoImpl; import io.delivery.entity.Document; +import io.delivery.entity.FeedBack; import io.delivery.model.Answer; import io.delivery.model.TableCreator; import io.delivery.model.impl.TableCreatorImpl; @@ -70,4 +73,9 @@ public Answer answer() { DocumentDao documentDao(){ return new DocumentDaoImpl(Document.class); } + + @Bean + FeedBackDao feedbackDao() { + return new FeedBackDaoImpl(FeedBack.class); + } } diff --git a/src/main/java/io/delivery/dao/FeedBackDao.java b/src/main/java/io/delivery/dao/FeedBackDao.java new file mode 100644 index 0000000..0030539 --- /dev/null +++ b/src/main/java/io/delivery/dao/FeedBackDao.java @@ -0,0 +1,7 @@ +package io.delivery.dao; + + +import io.delivery.entity.FeedBack; + +public interface FeedBackDao extends BasicDao{ +} diff --git a/src/main/java/io/delivery/dao/impl/FeedBackDaoImpl.java b/src/main/java/io/delivery/dao/impl/FeedBackDaoImpl.java new file mode 100644 index 0000000..fb361a9 --- /dev/null +++ b/src/main/java/io/delivery/dao/impl/FeedBackDaoImpl.java @@ -0,0 +1,10 @@ +package io.delivery.dao.impl; + +import io.delivery.dao.FeedBackDao; +import io.delivery.entity.FeedBack; + +public class FeedBackDaoImpl extends BasicDaoImpl implements FeedBackDao { + public FeedBackDaoImpl(Class entityClass) { + super(entityClass); + } +} diff --git a/src/main/java/io/delivery/entity/FeedBack.java b/src/main/java/io/delivery/entity/FeedBack.java new file mode 100644 index 0000000..45cc488 --- /dev/null +++ b/src/main/java/io/delivery/entity/FeedBack.java @@ -0,0 +1,58 @@ +package io.delivery.entity; + +import javax.persistence.*; +import java.time.LocalDate; + +@Entity +@Table(name = "feedbacks") +public class FeedBack { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Long id; + @Transient + private Long userId; + @Column(name = "feedback_date") + private LocalDate date; + @Column(name = "feedback_text") + private String feedBackText; + + public FeedBack() { + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + public LocalDate getDate() { + return date; + } + + public void setDate(LocalDate date) { + this.date = date; + } + + public String getFeedBackText() { + return feedBackText; + } + + public void setFeedBackText(String feedBackText) { + this.feedBackText = feedBackText; + } + + public FeedBack(LocalDate date, String feedBackText) { + this.date = date; + this.feedBackText = feedBackText; + } +} diff --git a/src/main/java/io/delivery/service/FeedbackService.java b/src/main/java/io/delivery/service/FeedbackService.java new file mode 100644 index 0000000..37981f7 --- /dev/null +++ b/src/main/java/io/delivery/service/FeedbackService.java @@ -0,0 +1,35 @@ +package io.delivery.service; + +import io.delivery.entity.FeedBack; + +import java.util.List; + +public interface FeedbackService { + /** + * Receive all documents from db + * + * @return document list + */ + List getFeedbackList(); + /** + * Create feedBack at database + * + * @param feedBack - current document for creation + * @return created feedBack + */ + FeedBack create(FeedBack feedBack); + + /** + * @param feedBack - document for update + * @return document + */ + FeedBack updateFeedBack(FeedBack feedBack); + + /** + * @param id = feedBack id + * @return deleted feedBack + */ + FeedBack deleteFeedBack(long id); + + FeedBack findById(long id); +} diff --git a/src/main/java/io/delivery/service/impl/FeedBackImp.java b/src/main/java/io/delivery/service/impl/FeedBackImp.java new file mode 100644 index 0000000..5c8861a --- /dev/null +++ b/src/main/java/io/delivery/service/impl/FeedBackImp.java @@ -0,0 +1,38 @@ +package io.delivery.service.impl; + +import io.delivery.dao.FeedBackDao; +import io.delivery.entity.FeedBack; +import io.delivery.service.FeedbackService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; +@Service("feedBackService") +public class FeedBackImp implements FeedbackService { + @Autowired + FeedBackDao feedbackDao; + @Override + public List getFeedbackList() { + return feedbackDao.getList(); + } + + @Override + public FeedBack create(FeedBack feedBack) { + return feedbackDao.create(feedBack); + } + + @Override + public FeedBack updateFeedBack(FeedBack feedBack) { + return feedbackDao.update(feedBack); + } + + @Override + public FeedBack deleteFeedBack(long id) { + return feedbackDao.delete(findById(id)); + } + + @Override + public FeedBack findById(long id) { + return feedbackDao.findById(id); + } +} From d5f33f19eee06248e2331f1293c6aa74f173e742 Mon Sep 17 00:00:00 2001 From: yuhans Date: Fri, 14 Apr 2017 21:45:52 +0300 Subject: [PATCH 02/17] add feedbackController and feedback.jsp --- .../config/application/WebConfig.java | 9 +++++ .../controller/FeedBackController.java | 34 +++++++++++++++++++ .../java/io/delivery/dto/FeedBackDto.java | 20 +++++++++++ .../java/io/delivery/entity/FeedBack.java | 10 +++--- web/WEB-INF/views/feedback.jsp | 22 ++++++++++++ 5 files changed, 90 insertions(+), 5 deletions(-) create mode 100644 src/main/java/io/delivery/controller/FeedBackController.java create mode 100644 src/main/java/io/delivery/dto/FeedBackDto.java create mode 100644 web/WEB-INF/views/feedback.jsp diff --git a/src/main/java/io/delivery/config/application/WebConfig.java b/src/main/java/io/delivery/config/application/WebConfig.java index a30683d..7c24063 100644 --- a/src/main/java/io/delivery/config/application/WebConfig.java +++ b/src/main/java/io/delivery/config/application/WebConfig.java @@ -3,6 +3,7 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; +import org.springframework.web.filter.CharacterEncodingFilter; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; import org.springframework.web.servlet.view.InternalResourceViewResolver; @@ -21,4 +22,12 @@ public InternalResourceViewResolver viewResolver() { viewResolver.setContentType("text/html; charset=utf-8"); return viewResolver; } + + @Bean + public CharacterEncodingFilter encodingFilter() { + CharacterEncodingFilter filter = new CharacterEncodingFilter(); + filter.setEncoding("UTF-8"); + filter.setForceEncoding(true); + return filter; + } } diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java new file mode 100644 index 0000000..e24a7ce --- /dev/null +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -0,0 +1,34 @@ +package io.delivery.controller; + +import io.delivery.dto.FeedBackDto; +import io.delivery.entity.FeedBack; +import io.delivery.service.FeedbackService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.servlet.ModelAndView; + +import java.time.LocalDate; + +@Controller +@RequestMapping("/feedback") +public class FeedBackController { + @Autowired + private FeedbackService feedbackService; + + @RequestMapping(method = RequestMethod.GET) + public ModelAndView getAllFeedbacks() { + ModelAndView modelAndView = new ModelAndView("feedback", "feedbackDto", new FeedBackDto()); + modelAndView.addObject("feedbacks", feedbackService.getFeedbackList()); + return modelAndView; + } + + @RequestMapping(value = "/add", method = RequestMethod.POST) + public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { + FeedBack feedBack = new FeedBack(LocalDate.now(), feedBackDto.getText()); + feedbackService.create(feedBack); + return new ModelAndView("redirect:" + "/feedback"); + } +} diff --git a/src/main/java/io/delivery/dto/FeedBackDto.java b/src/main/java/io/delivery/dto/FeedBackDto.java new file mode 100644 index 0000000..1842eaf --- /dev/null +++ b/src/main/java/io/delivery/dto/FeedBackDto.java @@ -0,0 +1,20 @@ +package io.delivery.dto; + +public class FeedBackDto { + private String text; + + public FeedBackDto() { + } + + public FeedBackDto(String text) { + this.text = text; + } + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } +} diff --git a/src/main/java/io/delivery/entity/FeedBack.java b/src/main/java/io/delivery/entity/FeedBack.java index 45cc488..87b5a67 100644 --- a/src/main/java/io/delivery/entity/FeedBack.java +++ b/src/main/java/io/delivery/entity/FeedBack.java @@ -19,6 +19,11 @@ public class FeedBack { public FeedBack() { } + public FeedBack(LocalDate date, String feedBackText) { + this.date = date; + this.feedBackText = feedBackText; + } + public Long getId() { return id; } @@ -50,9 +55,4 @@ public String getFeedBackText() { public void setFeedBackText(String feedBackText) { this.feedBackText = feedBackText; } - - public FeedBack(LocalDate date, String feedBackText) { - this.date = date; - this.feedBackText = feedBackText; - } } diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp new file mode 100644 index 0000000..3b33f63 --- /dev/null +++ b/web/WEB-INF/views/feedback.jsp @@ -0,0 +1,22 @@ +<%@ page contentType="text/html;charset=UTF-8" language="java" %> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + + + Отзывы + + +
+

Отзывы покупателей

+
+ + +
+ + +
+
+
+
+ + From c2e03ccfee77f6994de98a1b0bbe3f39d731977b Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Sun, 16 Apr 2017 14:43:28 +0300 Subject: [PATCH 03/17] add LocalDateTime and edit feedback.jsp --- .../controller/FeedBackController.java | 6 ++-- .../java/io/delivery/entity/FeedBack.java | 10 +++---- ...edBackImp.java => FeedBackServiceImp.java} | 2 +- web/WEB-INF/views/feedback.jsp | 28 ++++++++++++++++--- 4 files changed, 33 insertions(+), 13 deletions(-) rename src/main/java/io/delivery/service/impl/{FeedBackImp.java => FeedBackServiceImp.java} (93%) diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index e24a7ce..5fd3be1 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; -import java.time.LocalDate; +import java.time.LocalDateTime; @Controller @RequestMapping("/feedback") @@ -18,7 +18,7 @@ public class FeedBackController { @Autowired private FeedbackService feedbackService; - @RequestMapping(method = RequestMethod.GET) + @RequestMapping(method = RequestMethod.GET, produces = "application/json;charset=UTF-8") public ModelAndView getAllFeedbacks() { ModelAndView modelAndView = new ModelAndView("feedback", "feedbackDto", new FeedBackDto()); modelAndView.addObject("feedbacks", feedbackService.getFeedbackList()); @@ -27,7 +27,7 @@ public ModelAndView getAllFeedbacks() { @RequestMapping(value = "/add", method = RequestMethod.POST) public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { - FeedBack feedBack = new FeedBack(LocalDate.now(), feedBackDto.getText()); + FeedBack feedBack = new FeedBack(LocalDateTime.now(), feedBackDto.getText()); feedbackService.create(feedBack); return new ModelAndView("redirect:" + "/feedback"); } diff --git a/src/main/java/io/delivery/entity/FeedBack.java b/src/main/java/io/delivery/entity/FeedBack.java index 87b5a67..8420654 100644 --- a/src/main/java/io/delivery/entity/FeedBack.java +++ b/src/main/java/io/delivery/entity/FeedBack.java @@ -1,7 +1,7 @@ package io.delivery.entity; import javax.persistence.*; -import java.time.LocalDate; +import java.time.LocalDateTime; @Entity @Table(name = "feedbacks") @@ -12,14 +12,14 @@ public class FeedBack { @Transient private Long userId; @Column(name = "feedback_date") - private LocalDate date; + private LocalDateTime date; @Column(name = "feedback_text") private String feedBackText; public FeedBack() { } - public FeedBack(LocalDate date, String feedBackText) { + public FeedBack(LocalDateTime date, String feedBackText) { this.date = date; this.feedBackText = feedBackText; } @@ -40,11 +40,11 @@ public void setUserId(Long userId) { this.userId = userId; } - public LocalDate getDate() { + public LocalDateTime getDate() { return date; } - public void setDate(LocalDate date) { + public void setDate(LocalDateTime date) { this.date = date; } diff --git a/src/main/java/io/delivery/service/impl/FeedBackImp.java b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java similarity index 93% rename from src/main/java/io/delivery/service/impl/FeedBackImp.java rename to src/main/java/io/delivery/service/impl/FeedBackServiceImp.java index 5c8861a..2932e07 100644 --- a/src/main/java/io/delivery/service/impl/FeedBackImp.java +++ b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java @@ -8,7 +8,7 @@ import java.util.List; @Service("feedBackService") -public class FeedBackImp implements FeedbackService { +public class FeedBackServiceImp implements FeedbackService { @Autowired FeedBackDao feedbackDao; @Override diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp index 3b33f63..dbe9f7c 100644 --- a/web/WEB-INF/views/feedback.jsp +++ b/web/WEB-INF/views/feedback.jsp @@ -12,10 +12,30 @@
- - -
-
+

Отзывы

+ + + + + + + + + + + + +
ПокупательОтзыв
+ + + + + + + +
Здесь могло быть имя юзера
${feedback.date}
+
${feedback.feedBackText}
+
From 499a0398f96f413d179309713326f358fbc6b92f Mon Sep 17 00:00:00 2001 From: yuhans Date: Sun, 16 Apr 2017 18:15:55 +0300 Subject: [PATCH 04/17] add CharacterEncodingFilter --- .../java/io/delivery/config/WebAppInitializer.java | 11 +++++++++++ .../io/delivery/config/application/WebConfig.java | 9 --------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/main/java/io/delivery/config/WebAppInitializer.java b/src/main/java/io/delivery/config/WebAppInitializer.java index ad7d979..2c89709 100644 --- a/src/main/java/io/delivery/config/WebAppInitializer.java +++ b/src/main/java/io/delivery/config/WebAppInitializer.java @@ -1,8 +1,11 @@ package io.delivery.config; import io.delivery.config.application.WebConfig; +import org.springframework.web.filter.CharacterEncodingFilter; import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer; +import javax.servlet.Filter; + public class WebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { @Override @@ -19,4 +22,12 @@ protected Class[] getServletConfigClasses() { protected String[] getServletMappings() { return new String[]{"/"}; } + + @Override + protected Filter[] getServletFilters() { + CharacterEncodingFilter characterEncodingFilter = new CharacterEncodingFilter(); + characterEncodingFilter.setEncoding("UTF-8"); + characterEncodingFilter.setForceEncoding(true); + return new Filter[]{characterEncodingFilter}; + } } diff --git a/src/main/java/io/delivery/config/application/WebConfig.java b/src/main/java/io/delivery/config/application/WebConfig.java index 7c24063..a30683d 100644 --- a/src/main/java/io/delivery/config/application/WebConfig.java +++ b/src/main/java/io/delivery/config/application/WebConfig.java @@ -3,7 +3,6 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; -import org.springframework.web.filter.CharacterEncodingFilter; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; import org.springframework.web.servlet.view.InternalResourceViewResolver; @@ -22,12 +21,4 @@ public InternalResourceViewResolver viewResolver() { viewResolver.setContentType("text/html; charset=utf-8"); return viewResolver; } - - @Bean - public CharacterEncodingFilter encodingFilter() { - CharacterEncodingFilter filter = new CharacterEncodingFilter(); - filter.setEncoding("UTF-8"); - filter.setForceEncoding(true); - return filter; - } } From 15568e6fe0929cb2b022a9294e343f8f88d7d81c Mon Sep 17 00:00:00 2001 From: yuhans Date: Sun, 16 Apr 2017 18:33:44 +0300 Subject: [PATCH 05/17] changes in date output --- .../controller/FeedBackController.java | 4 +- web/WEB-INF/views/feedback.jsp | 67 +++++++++++-------- 2 files changed, 41 insertions(+), 30 deletions(-) diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index 5fd3be1..257c610 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -10,7 +10,9 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; +import java.time.LocalDate; import java.time.LocalDateTime; +import java.time.LocalTime; @Controller @RequestMapping("/feedback") @@ -27,7 +29,7 @@ public ModelAndView getAllFeedbacks() { @RequestMapping(value = "/add", method = RequestMethod.POST) public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { - FeedBack feedBack = new FeedBack(LocalDateTime.now(), feedBackDto.getText()); + FeedBack feedBack = new FeedBack(LocalDateTime.of(LocalDate.now(), LocalTime.now()), feedBackDto.getText()); feedbackService.create(feedBack); return new ModelAndView("redirect:" + "/feedback"); } diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp index dbe9f7c..dbc1f47 100644 --- a/web/WEB-INF/views/feedback.jsp +++ b/web/WEB-INF/views/feedback.jsp @@ -1,42 +1,51 @@ <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + Отзывы -
-

Отзывы покупателей

+
+

Отзывы покупателей

+
+ + + Добавить
- - -
-

Отзывы

- - +

Отзывы

+ +
+ + + + + - - + + - - - - - - -
ПокупательОтзыв
ПокупательОтзыв + + + + + + + +
Здесь могло быть имя юзера
+ + + +
+
${feedback.feedBackText}
- - - - - - - -
Здесь могло быть имя юзера
${feedback.date}
-
${feedback.feedBackText}
-
-
-
+ + + + +
From 5378f3780af505e104ab45d9731c6a0e37c0102b Mon Sep 17 00:00:00 2001 From: yuhans Date: Sun, 16 Apr 2017 18:48:59 +0300 Subject: [PATCH 06/17] add delete method and button --- .../controller/FeedBackController.java | 12 +++- web/WEB-INF/views/feedback.jsp | 64 ++++++++++--------- 2 files changed, 44 insertions(+), 32 deletions(-) diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index 257c610..5af00c7 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -8,11 +8,10 @@ import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.context.request.WebRequest; import org.springframework.web.servlet.ModelAndView; -import java.time.LocalDate; import java.time.LocalDateTime; -import java.time.LocalTime; @Controller @RequestMapping("/feedback") @@ -29,8 +28,15 @@ public ModelAndView getAllFeedbacks() { @RequestMapping(value = "/add", method = RequestMethod.POST) public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { - FeedBack feedBack = new FeedBack(LocalDateTime.of(LocalDate.now(), LocalTime.now()), feedBackDto.getText()); + FeedBack feedBack = new FeedBack(LocalDateTime.now(), feedBackDto.getText()); feedbackService.create(feedBack); return new ModelAndView("redirect:" + "/feedback"); } + + @RequestMapping(value = "/delete", method = RequestMethod.POST) + public ModelAndView deleteFeedBack(WebRequest request) { + Long feedbackId = Long.parseLong(request.getParameter("feedbackId")); + feedbackService.deleteFeedBack(feedbackId); + return new ModelAndView("redirect:" + "/feedback"); + } } diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp index dbc1f47..df50552 100644 --- a/web/WEB-INF/views/feedback.jsp +++ b/web/WEB-INF/views/feedback.jsp @@ -15,37 +15,43 @@ Добавить -
-

Отзывы

- - + +
+

Отзывы

+ +
+ + + + + - - + + + - - - - - - -
ПокупательОтзыв
ПокупательОтзыв + + + + + + + +
Здесь могло быть имя юзера
+ + + +
+
${feedback.feedBackText} + + + + +
- - - - - - - -
Здесь могло быть имя юзера
- - - -
-
${feedback.feedBackText}
-
-
+ + + From b4a91dc7fcd841dfd060ad53c4c9406effb97f5f Mon Sep 17 00:00:00 2001 From: yuhans Date: Sun, 16 Apr 2017 21:50:55 +0300 Subject: [PATCH 07/17] create some tests for feedback service --- pom.xml | 5 ++ .../service/impl/FeedBackServiceImp.java | 2 +- .../service/impl/FeedBackServiceImpTest.java | 72 +++++++++++++++++++ 3 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java diff --git a/pom.xml b/pom.xml index 98cc4d0..5436eaa 100644 --- a/pom.xml +++ b/pom.xml @@ -111,6 +111,11 @@ 4.12 test + + org.springframework + spring-test + ${spring.version} + diff --git a/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java index 2932e07..34c5127 100644 --- a/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java +++ b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java @@ -10,7 +10,7 @@ @Service("feedBackService") public class FeedBackServiceImp implements FeedbackService { @Autowired - FeedBackDao feedbackDao; + private FeedBackDao feedbackDao; @Override public List getFeedbackList() { return feedbackDao.getList(); diff --git a/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java b/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java new file mode 100644 index 0000000..3386fa3 --- /dev/null +++ b/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java @@ -0,0 +1,72 @@ +package io.delivery.service.impl; + +import io.delivery.config.HibernateConfig; +import io.delivery.config.application.WebConfig; +import io.delivery.entity.FeedBack; +import io.delivery.service.FeedbackService; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.context.web.WebAppConfiguration; + +import java.time.LocalDateTime; +import java.util.List; + +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration(classes = {WebConfig.class, HibernateConfig.class}) +@WebAppConfiguration +public class FeedBackServiceImpTest { + @Autowired + private FeedbackService feedbackService; + + private FeedBack feedBack; + + @Before + public void setUp() throws Exception { + feedBack = new FeedBack(LocalDateTime.now(), "feedback"); + feedbackService.create(feedBack); + } + + @After + public void tearDown() throws Exception { + Long id = feedBack.getId(); + FeedBack feedBackById = feedbackService.findById(id); + if (feedBackById != null) { + feedbackService.deleteFeedBack(id); + } + } + + @Test + public void getFeedbackList() throws Exception { + List feedbackList = feedbackService.getFeedbackList(); + Assert.assertNotNull(feedbackList); + Assert.assertEquals(2, feedbackList.size()); + } + + @Test + public void findById() throws Exception { + Long feedBackId = feedBack.getId(); + Assert.assertNotNull(feedBackId); + FeedBack reloadFeedBack = feedbackService.findById(feedBackId); + Assert.assertEquals(feedBack.getFeedBackText(), reloadFeedBack.getFeedBackText()); + } + + @Test + public void create() throws Exception { + } + + + @Test + public void updateFeedBack() throws Exception { + } + + @Test + public void deleteFeedBack() throws Exception { + } + +} \ No newline at end of file From c9b03448cf427536167a47f509f50720a163d258 Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Wed, 19 Apr 2017 01:29:15 +0300 Subject: [PATCH 08/17] add testDao --- .../java/io/delivery/dto/FeedBackDto.java | 16 ---- .../io/delivery/dao/impl/FeedBackDaoTest.java | 79 +++++++++++++++++++ web/WEB-INF/views/testFeedBack.jsp | 16 ++++ 3 files changed, 95 insertions(+), 16 deletions(-) create mode 100644 src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java create mode 100644 web/WEB-INF/views/testFeedBack.jsp diff --git a/src/main/java/io/delivery/dto/FeedBackDto.java b/src/main/java/io/delivery/dto/FeedBackDto.java index 1842eaf..50690f9 100644 --- a/src/main/java/io/delivery/dto/FeedBackDto.java +++ b/src/main/java/io/delivery/dto/FeedBackDto.java @@ -1,20 +1,4 @@ package io.delivery.dto; public class FeedBackDto { - private String text; - - public FeedBackDto() { - } - - public FeedBackDto(String text) { - this.text = text; - } - - public String getText() { - return text; - } - - public void setText(String text) { - this.text = text; - } } diff --git a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java new file mode 100644 index 0000000..57d6dbc --- /dev/null +++ b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java @@ -0,0 +1,79 @@ +package io.delivery.dao.impl; + +import io.delivery.config.HibernateConfig; +import io.delivery.config.application.WebConfig; +import io.delivery.dao.FeedBackDao; +import io.delivery.entity.FeedBack; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.context.web.WebAppConfiguration; + +import java.time.LocalDateTime; +import java.util.List; +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration(classes = {WebConfig.class, HibernateConfig.class}) +@WebAppConfiguration +public class FeedBackDaoTest { + @Autowired + private FeedBackDao feedBackDao; + + private FeedBack feedBack; + + @Before + public void setUp() throws Exception { + feedBack = new FeedBack(LocalDateTime.now(), "feedback"); + feedBackDao.create(feedBack); + } + + @After + public void tearDown() throws Exception { + Long id = feedBack.getId(); + FeedBack feedBackById = feedBackDao.findById(id); + if (feedBackById != null) { + feedBackDao.delete(feedBackById); + } + } + + @Test + public void getFeedbackList() throws Exception { + List feedbackList = feedBackDao.getList(); + Assert.assertNotNull(feedbackList); + } + + @Test + public void findById() throws Exception { + Long feedBackId = feedBack.getId(); + Assert.assertNotNull(feedBackId); + FeedBack reloadFeedBack = feedBackDao.findById(feedBackId); + Assert.assertEquals(feedBack.getFeedBackText(), reloadFeedBack.getFeedBackText()); + } + + @Test + public void create() throws Exception { + FeedBack createFeedBack = feedBackDao.create(feedBack); + Assert.assertNotNull(createFeedBack); + } + + + @Test + public void updateFeedBack() throws Exception { + FeedBack updateThis = new FeedBack(); + updateThis.setFeedBackText("TEST"); + updateThis = feedBackDao.update(feedBack); + Assert.assertNotNull(updateThis); + Assert.assertNotNull(feedBack); + Assert.assertEquals(updateThis, feedBack); + } + + @Test + public void deleteFeedBack() throws Exception { + feedBackDao.delete(feedBack); + Assert.assertNull(feedBackDao.findById(feedBack.getId())); + } +} diff --git a/web/WEB-INF/views/testFeedBack.jsp b/web/WEB-INF/views/testFeedBack.jsp new file mode 100644 index 0000000..47752bd --- /dev/null +++ b/web/WEB-INF/views/testFeedBack.jsp @@ -0,0 +1,16 @@ +<%-- + Created by IntelliJ IDEA. + User: Winner + Date: 18.04.2017 + Time: 1:29 + To change this template use File | Settings | File Templates. +--%> +<%@ page contentType="text/html;charset=UTF-8" language="java" %> + + + $Title$ + + +$END$ + + From ffa66360354c2ffbc05270e3a28a64711013cea3 Mon Sep 17 00:00:00 2001 From: yuhans Date: Wed, 19 Apr 2017 11:42:11 +0300 Subject: [PATCH 09/17] add FeedbackServiceTest with mockito, and change method delete in Service and Dao --- pom.xml | 10 +++ .../controller/FeedBackController.java | 18 ++-- .../io/delivery/service/FeedbackService.java | 4 +- .../service/impl/FeedBackServiceImp.java | 4 +- .../service/impl/FeedBackServiceImpTest.java | 90 ++++++++++++------- 5 files changed, 80 insertions(+), 46 deletions(-) diff --git a/pom.xml b/pom.xml index 5436eaa..dcaf5b3 100644 --- a/pom.xml +++ b/pom.xml @@ -116,6 +116,16 @@ spring-test ${spring.version} + + org.mockito + mockito-core + 2.7.22 + + + org.mockito + mockito-all + 1.10.19 + diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index 5af00c7..33baabd 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -5,14 +5,11 @@ import io.delivery.service.FeedbackService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.context.request.WebRequest; import org.springframework.web.servlet.ModelAndView; -import java.time.LocalDateTime; - @Controller @RequestMapping("/feedback") public class FeedBackController { @@ -26,17 +23,18 @@ public ModelAndView getAllFeedbacks() { return modelAndView; } - @RequestMapping(value = "/add", method = RequestMethod.POST) - public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { - FeedBack feedBack = new FeedBack(LocalDateTime.now(), feedBackDto.getText()); - feedbackService.create(feedBack); - return new ModelAndView("redirect:" + "/feedback"); - } +// @RequestMapping(value = "/add", method = RequestMethod.POST) +// public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { +// FeedBack feedBack = new FeedBack(LocalDateTime.now(), feedBackDto.getText()); +// feedbackService.create(feedBack); +// return new ModelAndView("redirect:" + "/feedback"); +// } @RequestMapping(value = "/delete", method = RequestMethod.POST) public ModelAndView deleteFeedBack(WebRequest request) { Long feedbackId = Long.parseLong(request.getParameter("feedbackId")); - feedbackService.deleteFeedBack(feedbackId); + FeedBack byId = feedbackService.findById(feedbackId); + feedbackService.deleteFeedBack(byId); return new ModelAndView("redirect:" + "/feedback"); } } diff --git a/src/main/java/io/delivery/service/FeedbackService.java b/src/main/java/io/delivery/service/FeedbackService.java index 37981f7..de9a261 100644 --- a/src/main/java/io/delivery/service/FeedbackService.java +++ b/src/main/java/io/delivery/service/FeedbackService.java @@ -26,10 +26,10 @@ public interface FeedbackService { FeedBack updateFeedBack(FeedBack feedBack); /** - * @param id = feedBack id + * @param feedBack = feedBack for delete * @return deleted feedBack */ - FeedBack deleteFeedBack(long id); + FeedBack deleteFeedBack(FeedBack feedBack); FeedBack findById(long id); } diff --git a/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java index 34c5127..0f4af0b 100644 --- a/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java +++ b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java @@ -27,8 +27,8 @@ public FeedBack updateFeedBack(FeedBack feedBack) { } @Override - public FeedBack deleteFeedBack(long id) { - return feedbackDao.delete(findById(id)); + public FeedBack deleteFeedBack(FeedBack feedBack) { + return feedbackDao.delete(feedBack); } @Override diff --git a/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java b/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java index 3386fa3..75f7a50 100644 --- a/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java +++ b/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java @@ -1,72 +1,98 @@ package io.delivery.service.impl; -import io.delivery.config.HibernateConfig; -import io.delivery.config.application.WebConfig; +import io.delivery.dao.FeedBackDao; import io.delivery.entity.FeedBack; -import io.delivery.service.FeedbackService; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; +import org.mockito.*; import java.time.LocalDateTime; +import java.util.ArrayList; import java.util.List; -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(classes = {WebConfig.class, HibernateConfig.class}) -@WebAppConfiguration +import static org.mockito.Mockito.*; + public class FeedBackServiceImpTest { - @Autowired - private FeedbackService feedbackService; + @Mock + private FeedBackDao dao; + + @InjectMocks + private FeedBackServiceImp feedbackService; - private FeedBack feedBack; + @Spy + private List feedBacks = new ArrayList<>(); + + @Captor + private ArgumentCaptor captor; @Before public void setUp() throws Exception { - feedBack = new FeedBack(LocalDateTime.now(), "feedback"); - feedbackService.create(feedBack); + MockitoAnnotations.initMocks(this); + feedBacks = getFeedbacks(); + } + + private List getFeedbacks() { + FeedBack feedBack1 = new FeedBack(LocalDateTime.now(), "first"); + feedBack1.setId(1L); + FeedBack feedBack2 = new FeedBack(LocalDateTime.now(), "second"); + feedBack2.setId(2L); + FeedBack feedBack3 = new FeedBack(LocalDateTime.now(), "third"); + feedBack3.setId(3L); + feedBacks.add(feedBack1); + feedBacks.add(feedBack2); + feedBacks.add(feedBack3); + return feedBacks; } @After public void tearDown() throws Exception { - Long id = feedBack.getId(); - FeedBack feedBackById = feedbackService.findById(id); - if (feedBackById != null) { - feedbackService.deleteFeedBack(id); - } + feedBacks.clear(); } @Test public void getFeedbackList() throws Exception { - List feedbackList = feedbackService.getFeedbackList(); - Assert.assertNotNull(feedbackList); - Assert.assertEquals(2, feedbackList.size()); - } + when(dao.getList()).thenReturn(feedBacks); + Assert.assertEquals( feedBacks,feedbackService.getFeedbackList()); + verify(dao, times(1)).getList(); - @Test - public void findById() throws Exception { - Long feedBackId = feedBack.getId(); - Assert.assertNotNull(feedBackId); - FeedBack reloadFeedBack = feedbackService.findById(feedBackId); - Assert.assertEquals(feedBack.getFeedBackText(), reloadFeedBack.getFeedBackText()); } @Test public void create() throws Exception { - } + FeedBack feedBack = feedBacks.get(0); + when(dao.create(any(FeedBack.class))).thenReturn(feedBack); + + Assert.assertEquals(feedBack.getFeedBackText(), feedbackService.create(feedBack).getFeedBackText()); + verify(dao, times(1)).create(feedBack); + Assert.assertEquals(3, feedBacks.size()); + verify(feedBacks, times(3)).add(any(FeedBack.class)); + } @Test public void updateFeedBack() throws Exception { + FeedBack feedBack = feedBacks.get(0); + when(dao.update(any(FeedBack.class))).thenReturn(feedBack); + Assert.assertEquals(feedBack.getFeedBackText(), feedbackService.updateFeedBack(feedBack).getFeedBackText()); + verify(dao, times(1)).update(any(FeedBack.class)); } @Test public void deleteFeedBack() throws Exception { + FeedBack feedBack = feedBacks.get(0); + when(dao.delete(any(FeedBack.class))).thenReturn(feedBack); + Assert.assertEquals(feedBack.getFeedBackText(), feedbackService.deleteFeedBack(feedBack).getFeedBackText()); + verify(dao, times(1)).delete(any(FeedBack.class)); + } + + @Test + public void findById() throws Exception { + FeedBack feedBack = feedBacks.get(0); + when(dao.findById(anyLong())).thenReturn(feedBack); + Assert.assertEquals(feedBack.getId(),feedbackService.findById(feedBack.getId()).getId()); + verify(dao, times(1)).findById(anyLong()); } } \ No newline at end of file From 7b165851ff325381f87a75a7fa41dc868a3e9f7e Mon Sep 17 00:00:00 2001 From: yuhans Date: Wed, 19 Apr 2017 12:51:24 +0300 Subject: [PATCH 10/17] change controller to produce json, delete dto, add controller test, but it doesn't work properly yet --- .../controller/FeedBackController.java | 49 +++++++----- .../java/io/delivery/dto/FeedBackDto.java | 4 - .../controller/FeedBackControllerTest.java | 79 +++++++++++++++++++ 3 files changed, 107 insertions(+), 25 deletions(-) delete mode 100644 src/main/java/io/delivery/dto/FeedBackDto.java create mode 100644 src/test/java/io/delivery/controller/FeedBackControllerTest.java diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index 33baabd..e84653c 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -1,14 +1,12 @@ package io.delivery.controller; -import io.delivery.dto.FeedBackDto; import io.delivery.entity.FeedBack; import io.delivery.service.FeedbackService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.context.request.WebRequest; -import org.springframework.web.servlet.ModelAndView; +import org.springframework.web.bind.annotation.*; + +import java.util.List; @Controller @RequestMapping("/feedback") @@ -16,25 +14,34 @@ public class FeedBackController { @Autowired private FeedbackService feedbackService; - @RequestMapping(method = RequestMethod.GET, produces = "application/json;charset=UTF-8") - public ModelAndView getAllFeedbacks() { - ModelAndView modelAndView = new ModelAndView("feedback", "feedbackDto", new FeedBackDto()); - modelAndView.addObject("feedbacks", feedbackService.getFeedbackList()); - return modelAndView; + @RequestMapping(value = "/all", method = RequestMethod.GET, produces = "application/json;charset=UTF-8") + @ResponseBody + public List getAllFeedbacks() { + return feedbackService.getFeedbackList(); + } + + @RequestMapping(value = "/add", method = RequestMethod.PUT, produces = "application/json;charset=UTF-8") + @ResponseBody + public FeedBack addFeedBack(@RequestBody FeedBack feedBack) { + feedbackService.create(feedBack); + return feedBack; } -// @RequestMapping(value = "/add", method = RequestMethod.POST) -// public ModelAndView addFeedBack(@ModelAttribute("feedbackDto") FeedBackDto feedBackDto) { -// FeedBack feedBack = new FeedBack(LocalDateTime.now(), feedBackDto.getText()); -// feedbackService.create(feedBack); -// return new ModelAndView("redirect:" + "/feedback"); -// } + @RequestMapping(value = "/update", method = RequestMethod.POST, produces = "application/json;charset=UTF-8") + @ResponseBody + public FeedBack updateFeedBack(@RequestBody FeedBack feedBack) { + feedbackService.updateFeedBack(feedBack); + return feedBack; + } - @RequestMapping(value = "/delete", method = RequestMethod.POST) - public ModelAndView deleteFeedBack(WebRequest request) { - Long feedbackId = Long.parseLong(request.getParameter("feedbackId")); + @RequestMapping(value = "/delete/{id}", method = RequestMethod.DELETE, produces = "application/json;charset=UTF-8") + public FeedBack deleteFeedBack(@PathVariable(value = "id") String inputId) { + Long feedbackId = Long.parseLong(inputId); FeedBack byId = feedbackService.findById(feedbackId); - feedbackService.deleteFeedBack(byId); - return new ModelAndView("redirect:" + "/feedback"); + FeedBack deletedFeedback = null; + if (byId != null) { + deletedFeedback = feedbackService.deleteFeedBack(byId); + } + return deletedFeedback; } } diff --git a/src/main/java/io/delivery/dto/FeedBackDto.java b/src/main/java/io/delivery/dto/FeedBackDto.java deleted file mode 100644 index 50690f9..0000000 --- a/src/main/java/io/delivery/dto/FeedBackDto.java +++ /dev/null @@ -1,4 +0,0 @@ -package io.delivery.dto; - -public class FeedBackDto { -} diff --git a/src/test/java/io/delivery/controller/FeedBackControllerTest.java b/src/test/java/io/delivery/controller/FeedBackControllerTest.java new file mode 100644 index 0000000..199acad --- /dev/null +++ b/src/test/java/io/delivery/controller/FeedBackControllerTest.java @@ -0,0 +1,79 @@ +package io.delivery.controller; + +import io.delivery.entity.FeedBack; +import org.junit.Assert; +import org.junit.Test; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.http.*; +import org.springframework.web.client.RestTemplate; + +import java.time.LocalDateTime; +import java.util.List; + +import static org.junit.Assert.assertNotNull; + +public class FeedBackControllerTest { + private final String ROOT = "http://localhost:8080/feedback"; + private final String ADD = "/add"; + private final String UPDATE = "/update"; + private final String DELETE = "/delete/"; + private final String ALL = "/all"; + + @Test + public void getAllFeedbacks() throws Exception { + RestTemplate restTemplate = new RestTemplate(); + createFeedback(); + createFeedback(); + + ResponseEntity> result = restTemplate.exchange( + ROOT + ALL, + HttpMethod.GET, + null, + new ParameterizedTypeReference>() { + } + ); + Assert.assertEquals(HttpStatus.OK, result.getStatusCode()); + assertNotNull(result.getBody()); + List list = result.getBody(); + assertNotNull(list.get(0)); + } + + @Test + public void addFeedBack() throws Exception { + createFeedback(); + } + + @Test + public void updateFeedBack() throws Exception { + } + + @Test + public void deleteFeedBack() throws Exception { + } + + private FeedBack createFeedback() { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON_UTF8); + + FeedBack feedBack = prefillFeedback(); + HttpEntity httpEntity = new HttpEntity<>(feedBack, headers); + RestTemplate restTemplate = new RestTemplate(); + FeedBack createdFeedBack = restTemplate.exchange( + ROOT + ADD, + HttpMethod.PUT, + httpEntity, + FeedBack.class + ).getBody(); + assertNotNull(createdFeedBack); + Assert.assertEquals(feedBack.getFeedBackText(), createdFeedBack.getFeedBackText()); + return createdFeedBack; + } + + private FeedBack prefillFeedback() { + FeedBack feedBack = new FeedBack(); + feedBack.setDate(LocalDateTime.now()); + feedBack.setFeedBackText("feedback for test"); + return feedBack; + } + +} \ No newline at end of file From 898393bd9f0a9b9af6866363c7b5b4037c59a74c Mon Sep 17 00:00:00 2001 From: yuhans Date: Wed, 19 Apr 2017 22:01:25 +0300 Subject: [PATCH 11/17] beauty changes, change LocalDateTime to Date, change update test in FeedbackDaoTest --- .../controller/FeedBackController.java | 10 +--- .../java/io/delivery/dao/FeedBackDao.java | 2 +- .../java/io/delivery/entity/FeedBack.java | 12 ++-- .../io/delivery/service/FeedbackService.java | 3 +- .../service/impl/FeedBackServiceImp.java | 2 + .../controller/FeedBackControllerTest.java | 58 +++++++++---------- .../io/delivery/dao/impl/FeedBackDaoTest.java | 14 ++--- .../service/impl/FeedBackServiceImpTest.java | 7 +-- .../document/DocumentIntegrationTest.java | 3 +- 9 files changed, 55 insertions(+), 56 deletions(-) diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index e84653c..6bf08e2 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -35,13 +35,9 @@ public FeedBack updateFeedBack(@RequestBody FeedBack feedBack) { } @RequestMapping(value = "/delete/{id}", method = RequestMethod.DELETE, produces = "application/json;charset=UTF-8") + @ResponseBody public FeedBack deleteFeedBack(@PathVariable(value = "id") String inputId) { - Long feedbackId = Long.parseLong(inputId); - FeedBack byId = feedbackService.findById(feedbackId); - FeedBack deletedFeedback = null; - if (byId != null) { - deletedFeedback = feedbackService.deleteFeedBack(byId); - } - return deletedFeedback; + FeedBack foundFeedback = feedbackService.findById(Long.parseLong(inputId)); + return feedbackService.deleteFeedBack(foundFeedback); } } diff --git a/src/main/java/io/delivery/dao/FeedBackDao.java b/src/main/java/io/delivery/dao/FeedBackDao.java index 0030539..e54dadc 100644 --- a/src/main/java/io/delivery/dao/FeedBackDao.java +++ b/src/main/java/io/delivery/dao/FeedBackDao.java @@ -3,5 +3,5 @@ import io.delivery.entity.FeedBack; -public interface FeedBackDao extends BasicDao{ +public interface FeedBackDao extends BasicDao { } diff --git a/src/main/java/io/delivery/entity/FeedBack.java b/src/main/java/io/delivery/entity/FeedBack.java index 8420654..25989db 100644 --- a/src/main/java/io/delivery/entity/FeedBack.java +++ b/src/main/java/io/delivery/entity/FeedBack.java @@ -1,7 +1,7 @@ package io.delivery.entity; import javax.persistence.*; -import java.time.LocalDateTime; +import java.util.Date; @Entity @Table(name = "feedbacks") @@ -12,15 +12,15 @@ public class FeedBack { @Transient private Long userId; @Column(name = "feedback_date") - private LocalDateTime date; + private Date date; @Column(name = "feedback_text") private String feedBackText; public FeedBack() { } - public FeedBack(LocalDateTime date, String feedBackText) { - this.date = date; + public FeedBack(String feedBackText) { + this.date = new Date(); this.feedBackText = feedBackText; } @@ -40,11 +40,11 @@ public void setUserId(Long userId) { this.userId = userId; } - public LocalDateTime getDate() { + public Date getDate() { return date; } - public void setDate(LocalDateTime date) { + public void setDate(Date date) { this.date = date; } diff --git a/src/main/java/io/delivery/service/FeedbackService.java b/src/main/java/io/delivery/service/FeedbackService.java index de9a261..6025297 100644 --- a/src/main/java/io/delivery/service/FeedbackService.java +++ b/src/main/java/io/delivery/service/FeedbackService.java @@ -11,7 +11,8 @@ public interface FeedbackService { * @return document list */ List getFeedbackList(); - /** + + /** * Create feedBack at database * * @param feedBack - current document for creation diff --git a/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java index 0f4af0b..b80e6f2 100644 --- a/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java +++ b/src/main/java/io/delivery/service/impl/FeedBackServiceImp.java @@ -7,10 +7,12 @@ import org.springframework.stereotype.Service; import java.util.List; + @Service("feedBackService") public class FeedBackServiceImp implements FeedbackService { @Autowired private FeedBackDao feedbackDao; + @Override public List getFeedbackList() { return feedbackDao.getList(); diff --git a/src/test/java/io/delivery/controller/FeedBackControllerTest.java b/src/test/java/io/delivery/controller/FeedBackControllerTest.java index 199acad..bdaf8e5 100644 --- a/src/test/java/io/delivery/controller/FeedBackControllerTest.java +++ b/src/test/java/io/delivery/controller/FeedBackControllerTest.java @@ -7,7 +7,7 @@ import org.springframework.http.*; import org.springframework.web.client.RestTemplate; -import java.time.LocalDateTime; +import java.util.Date; import java.util.List; import static org.junit.Assert.assertNotNull; @@ -19,38 +19,11 @@ public class FeedBackControllerTest { private final String DELETE = "/delete/"; private final String ALL = "/all"; - @Test - public void getAllFeedbacks() throws Exception { - RestTemplate restTemplate = new RestTemplate(); - createFeedback(); - createFeedback(); - - ResponseEntity> result = restTemplate.exchange( - ROOT + ALL, - HttpMethod.GET, - null, - new ParameterizedTypeReference>() { - } - ); - Assert.assertEquals(HttpStatus.OK, result.getStatusCode()); - assertNotNull(result.getBody()); - List list = result.getBody(); - assertNotNull(list.get(0)); - } - @Test public void addFeedBack() throws Exception { createFeedback(); } - @Test - public void updateFeedBack() throws Exception { - } - - @Test - public void deleteFeedBack() throws Exception { - } - private FeedBack createFeedback() { HttpHeaders headers = new HttpHeaders(); headers.setContentType(MediaType.APPLICATION_JSON_UTF8); @@ -71,9 +44,36 @@ private FeedBack createFeedback() { private FeedBack prefillFeedback() { FeedBack feedBack = new FeedBack(); - feedBack.setDate(LocalDateTime.now()); + feedBack.setDate(new Date()); feedBack.setFeedBackText("feedback for test"); return feedBack; } + @Test + public void getAllFeedbacks() throws Exception { + RestTemplate restTemplate = new RestTemplate(); + createFeedback(); + createFeedback(); + + ResponseEntity> result = restTemplate.exchange( + ROOT + ALL, + HttpMethod.GET, + null, + new ParameterizedTypeReference>() { + } + ); + Assert.assertEquals(HttpStatus.OK, result.getStatusCode()); + assertNotNull(result.getBody()); + List list = result.getBody(); + assertNotNull(list.get(0)); + } + + @Test + public void updateFeedBack() throws Exception { + } + + @Test + public void deleteFeedBack() throws Exception { + } + } \ No newline at end of file diff --git a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java index 57d6dbc..0c8eaba 100644 --- a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java +++ b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java @@ -14,7 +14,6 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; -import java.time.LocalDateTime; import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = {WebConfig.class, HibernateConfig.class}) @@ -27,7 +26,7 @@ public class FeedBackDaoTest { @Before public void setUp() throws Exception { - feedBack = new FeedBack(LocalDateTime.now(), "feedback"); + feedBack = new FeedBack("feedback"); feedBackDao.create(feedBack); } @@ -63,12 +62,13 @@ public void create() throws Exception { @Test public void updateFeedBack() throws Exception { - FeedBack updateThis = new FeedBack(); - updateThis.setFeedBackText("TEST"); - updateThis = feedBackDao.update(feedBack); - Assert.assertNotNull(updateThis); + FeedBack oldFeedback = feedBackDao.findById(feedBack.getId()); + feedBack.setFeedBackText("new text"); + feedBackDao.update(feedBack); + FeedBack reloadFeedback = feedBackDao.findById(feedBack.getId()); + Assert.assertNotNull(reloadFeedback); Assert.assertNotNull(feedBack); - Assert.assertEquals(updateThis, feedBack); + Assert.assertNotEquals(oldFeedback.getFeedBackText(), feedBack.getFeedBackText()); } @Test diff --git a/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java b/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java index 75f7a50..817ab62 100644 --- a/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java +++ b/src/test/java/io/delivery/service/impl/FeedBackServiceImpTest.java @@ -8,7 +8,6 @@ import org.junit.Test; import org.mockito.*; -import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; @@ -34,11 +33,11 @@ public void setUp() throws Exception { } private List getFeedbacks() { - FeedBack feedBack1 = new FeedBack(LocalDateTime.now(), "first"); + FeedBack feedBack1 = new FeedBack("first"); feedBack1.setId(1L); - FeedBack feedBack2 = new FeedBack(LocalDateTime.now(), "second"); + FeedBack feedBack2 = new FeedBack("second"); feedBack2.setId(2L); - FeedBack feedBack3 = new FeedBack(LocalDateTime.now(), "third"); + FeedBack feedBack3 = new FeedBack("third"); feedBack3.setId(3L); feedBacks.add(feedBack1); feedBacks.add(feedBack2); diff --git a/src/test/java/io/khasang/document/DocumentIntegrationTest.java b/src/test/java/io/khasang/document/DocumentIntegrationTest.java index aecb26a..c38ba1a 100644 --- a/src/test/java/io/khasang/document/DocumentIntegrationTest.java +++ b/src/test/java/io/khasang/document/DocumentIntegrationTest.java @@ -56,7 +56,8 @@ private Document createDocument() { return createdDocument; } - private Document prefillDocument() { + private Document + prefillDocument() { Document document = new Document(); document.setName("Magic"); document.setSpecificInnerInfo("fire"); From f4bdbd7d1bac751f724ef1a6befc3a27764f65c5 Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Fri, 21 Apr 2017 00:11:30 +0300 Subject: [PATCH 12/17] add feedbackController tests --- .../controller/FeedBackController.java | 2 +- .../controller/FeedBackControllerTest.java | 40 +++++++++++++++++-- .../io/delivery/dao/impl/FeedBackDaoTest.java | 1 + web/WEB-INF/views/testFeedBack.jsp | 16 -------- 4 files changed, 39 insertions(+), 20 deletions(-) delete mode 100644 web/WEB-INF/views/testFeedBack.jsp diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index 6bf08e2..1ddfc5f 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -14,7 +14,7 @@ public class FeedBackController { @Autowired private FeedbackService feedbackService; - @RequestMapping(value = "/all", method = RequestMethod.GET, produces = "application/json;charset=UTF-8") + @RequestMapping(value = "/all", method = RequestMethod.GET) @ResponseBody public List getAllFeedbacks() { return feedbackService.getFeedbackList(); diff --git a/src/test/java/io/delivery/controller/FeedBackControllerTest.java b/src/test/java/io/delivery/controller/FeedBackControllerTest.java index bdaf8e5..0df4a01 100644 --- a/src/test/java/io/delivery/controller/FeedBackControllerTest.java +++ b/src/test/java/io/delivery/controller/FeedBackControllerTest.java @@ -1,7 +1,6 @@ package io.delivery.controller; import io.delivery.entity.FeedBack; -import org.junit.Assert; import org.junit.Test; import org.springframework.core.ParameterizedTypeReference; import org.springframework.http.*; @@ -10,6 +9,7 @@ import java.util.Date; import java.util.List; +import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; public class FeedBackControllerTest { @@ -38,7 +38,7 @@ private FeedBack createFeedback() { FeedBack.class ).getBody(); assertNotNull(createdFeedBack); - Assert.assertEquals(feedBack.getFeedBackText(), createdFeedBack.getFeedBackText()); + assertEquals(feedBack.getFeedBackText(), createdFeedBack.getFeedBackText()); return createdFeedBack; } @@ -62,7 +62,7 @@ public void getAllFeedbacks() throws Exception { new ParameterizedTypeReference>() { } ); - Assert.assertEquals(HttpStatus.OK, result.getStatusCode()); + assertEquals(HttpStatus.OK, result.getStatusCode()); assertNotNull(result.getBody()); List list = result.getBody(); assertNotNull(list.get(0)); @@ -70,10 +70,44 @@ public void getAllFeedbacks() throws Exception { @Test public void updateFeedBack() throws Exception { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON_UTF8); + + RestTemplate restTemplate = new RestTemplate(); + FeedBack feedBack = createFeedback(); + assertNotNull(feedBack); + + feedBack.setFeedBackText("TEST"); + + HttpEntity httpEntity = new HttpEntity<>(feedBack, headers); + FeedBack resultUpdate = restTemplate.exchange( + ROOT + UPDATE, + HttpMethod.POST, + httpEntity, + FeedBack.class + ).getBody(); + + assertNotNull(resultUpdate); + assertNotNull(resultUpdate.getId()); + assertEquals("TEST", resultUpdate.getFeedBackText()); } @Test public void deleteFeedBack() throws Exception { + FeedBack feedBack = createFeedback(); + assertNotNull(feedBack); + + RestTemplate restTemplate = new RestTemplate(); + ResponseEntity responseEntity = restTemplate.exchange( + ROOT + DELETE + "{id}", + HttpMethod.DELETE, + null, + String.class, + feedBack.getId() + ); + + assertEquals(HttpStatus.OK, responseEntity.getStatusCode()); + } } \ No newline at end of file diff --git a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java index 0c8eaba..9860da0 100644 --- a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java +++ b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java @@ -14,6 +14,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; +import java.util.Date; import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = {WebConfig.class, HibernateConfig.class}) diff --git a/web/WEB-INF/views/testFeedBack.jsp b/web/WEB-INF/views/testFeedBack.jsp deleted file mode 100644 index 47752bd..0000000 --- a/web/WEB-INF/views/testFeedBack.jsp +++ /dev/null @@ -1,16 +0,0 @@ -<%-- - Created by IntelliJ IDEA. - User: Winner - Date: 18.04.2017 - Time: 1:29 - To change this template use File | Settings | File Templates. ---%> -<%@ page contentType="text/html;charset=UTF-8" language="java" %> - - - $Title$ - - -$END$ - - From f987309b823ed8f85165e728bc94648d6e2aa8d9 Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Wed, 26 Apr 2017 19:39:08 +0300 Subject: [PATCH 13/17] add feedback.jsp --- .../io/delivery/controller/AppController.java | 5 + .../controller/FeedBackController.java | 2 +- .../io/delivery/dao/impl/FeedBackDaoTest.java | 1 - web/WEB-INF/views/feedback.jsp | 117 +++++++++++------- 4 files changed, 79 insertions(+), 46 deletions(-) diff --git a/src/main/java/io/delivery/controller/AppController.java b/src/main/java/io/delivery/controller/AppController.java index 5e9bbbe..7b73d0c 100644 --- a/src/main/java/io/delivery/controller/AppController.java +++ b/src/main/java/io/delivery/controller/AppController.java @@ -89,4 +89,9 @@ public ModelAndView checkWord(@PathVariable("check") String check) throws IOExce modelAndView.addObject("info", client.result(check)); return modelAndView; } + + @RequestMapping(value = "/feedback") + public String feedBack() { + return "feedback"; + } } diff --git a/src/main/java/io/delivery/controller/FeedBackController.java b/src/main/java/io/delivery/controller/FeedBackController.java index 1ddfc5f..b28e6c5 100644 --- a/src/main/java/io/delivery/controller/FeedBackController.java +++ b/src/main/java/io/delivery/controller/FeedBackController.java @@ -20,7 +20,7 @@ public List getAllFeedbacks() { return feedbackService.getFeedbackList(); } - @RequestMapping(value = "/add", method = RequestMethod.PUT, produces = "application/json;charset=UTF-8") + @RequestMapping(value = "/add", method = RequestMethod.POST, produces = "application/json;charset=UTF-8") @ResponseBody public FeedBack addFeedBack(@RequestBody FeedBack feedBack) { feedbackService.create(feedBack); diff --git a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java index 9860da0..0c8eaba 100644 --- a/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java +++ b/src/test/java/io/delivery/dao/impl/FeedBackDaoTest.java @@ -14,7 +14,6 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; -import java.util.Date; import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = {WebConfig.class, HibernateConfig.class}) diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp index df50552..f6ab2db 100644 --- a/web/WEB-INF/views/feedback.jsp +++ b/web/WEB-INF/views/feedback.jsp @@ -7,51 +7,80 @@ Отзывы + + - -
-

Отзывы покупателей

-
- - - Добавить - -
-

Отзывы

- - - - - - - - - - - - - -
ПокупательОтзыв
- - - - - - - -
Здесь могло быть имя юзера
- - - -
-
${feedback.feedBackText} - - - - -
-
+ + +
+
+
+ + + + + + + +
+ + + + + + + + + + + +
Дата + Отзыв +
+
+
+
From 38a455e6d8310eca2649844eb8c89e290a199669 Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Sat, 29 Apr 2017 16:04:32 +0300 Subject: [PATCH 14/17] add dynamic table --- web/WEB-INF/views/feedback.jsp | 69 ++++++++++++++++++++-------------- 1 file changed, 41 insertions(+), 28 deletions(-) diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp index f6ab2db..7494b57 100644 --- a/web/WEB-INF/views/feedback.jsp +++ b/web/WEB-INF/views/feedback.jsp @@ -12,6 +12,19 @@
- - - - - - - -
- - - - - - - - - - - + + + +
+
Дата - Отзыв -
-
- + \ No newline at end of file From 03a96e80b5d291f0040a14abb2923b6b65fb6bf5 Mon Sep 17 00:00:00 2001 From: yuhans Date: Sat, 29 Apr 2017 18:24:08 +0300 Subject: [PATCH 15/17] add CBR SOAP service --- cbrInfo.wsdl | 3731 +++++++++++++++++ pom.xml | 6 + src/main/java/ru/cbr/web/AllDataInfoXML.java | 32 + .../ru/cbr/web/AllDataInfoXMLResponse.java | 140 + src/main/java/ru/cbr/web/Bauction.java | 96 + .../java/ru/cbr/web/BauctionResponse.java | 130 + src/main/java/ru/cbr/web/BauctionXML.java | 96 + .../java/ru/cbr/web/BauctionXMLResponse.java | 140 + src/main/java/ru/cbr/web/BiCurBacket.java | 32 + .../java/ru/cbr/web/BiCurBacketResponse.java | 130 + src/main/java/ru/cbr/web/BiCurBacketXML.java | 32 + .../ru/cbr/web/BiCurBacketXMLResponse.java | 140 + src/main/java/ru/cbr/web/BiCurBase.java | 96 + .../java/ru/cbr/web/BiCurBaseResponse.java | 130 + src/main/java/ru/cbr/web/BiCurBaseXML.java | 96 + .../java/ru/cbr/web/BiCurBaseXMLResponse.java | 140 + src/main/java/ru/cbr/web/CoinsBase.java | 96 + .../java/ru/cbr/web/CoinsBaseResponse.java | 130 + src/main/java/ru/cbr/web/CoinsBaseXML.java | 96 + .../java/ru/cbr/web/CoinsBaseXMLResponse.java | 140 + src/main/java/ru/cbr/web/DV.java | 96 + src/main/java/ru/cbr/web/DVResponse.java | 130 + src/main/java/ru/cbr/web/DVXML.java | 96 + src/main/java/ru/cbr/web/DVXMLResponse.java | 140 + src/main/java/ru/cbr/web/DailyInfo.java | 96 + src/main/java/ru/cbr/web/DailyInfoSoap.java | 1311 ++++++ src/main/java/ru/cbr/web/DepoDynamic.java | 96 + .../java/ru/cbr/web/DepoDynamicResponse.java | 130 + src/main/java/ru/cbr/web/DepoDynamicXML.java | 96 + .../ru/cbr/web/DepoDynamicXMLResponse.java | 140 + src/main/java/ru/cbr/web/DragMetDynamic.java | 96 + .../ru/cbr/web/DragMetDynamicResponse.java | 130 + .../java/ru/cbr/web/DragMetDynamicXML.java | 96 + .../ru/cbr/web/DragMetDynamicXMLResponse.java | 140 + .../java/ru/cbr/web/EnumReutersValutes.java | 32 + .../cbr/web/EnumReutersValutesResponse.java | 130 + .../ru/cbr/web/EnumReutersValutesXML.java | 32 + .../web/EnumReutersValutesXMLResponse.java | 140 + src/main/java/ru/cbr/web/EnumValutes.java | 56 + .../java/ru/cbr/web/EnumValutesResponse.java | 130 + src/main/java/ru/cbr/web/EnumValutesXML.java | 56 + .../ru/cbr/web/EnumValutesXMLResponse.java | 140 + src/main/java/ru/cbr/web/FixingBase.java | 96 + .../java/ru/cbr/web/FixingBaseResponse.java | 130 + src/main/java/ru/cbr/web/FixingBaseXML.java | 96 + .../ru/cbr/web/FixingBaseXMLResponse.java | 140 + src/main/java/ru/cbr/web/GetCursDynamic.java | 124 + .../ru/cbr/web/GetCursDynamicResponse.java | 130 + .../java/ru/cbr/web/GetCursDynamicXML.java | 124 + .../ru/cbr/web/GetCursDynamicXMLResponse.java | 140 + src/main/java/ru/cbr/web/GetCursOnDate.java | 67 + .../ru/cbr/web/GetCursOnDateResponse.java | 130 + .../java/ru/cbr/web/GetCursOnDateXML.java | 67 + .../ru/cbr/web/GetCursOnDateXMLResponse.java | 140 + src/main/java/ru/cbr/web/GetLatestDate.java | 32 + .../ru/cbr/web/GetLatestDateResponse.java | 64 + .../java/ru/cbr/web/GetLatestDateSeld.java | 32 + .../ru/cbr/web/GetLatestDateSeldResponse.java | 64 + .../java/ru/cbr/web/GetLatestDateTime.java | 32 + .../ru/cbr/web/GetLatestDateTimeResponse.java | 67 + .../ru/cbr/web/GetLatestDateTimeSeld.java | 32 + .../web/GetLatestDateTimeSeldResponse.java | 67 + .../ru/cbr/web/GetLatestReutersDateTime.java | 32 + .../web/GetLatestReutersDateTimeResponse.java | 67 + .../ru/cbr/web/GetReutersCursDynamic.java | 116 + .../web/GetReutersCursDynamicResponse.java | 130 + .../ru/cbr/web/GetReutersCursDynamicXML.java | 116 + .../web/GetReutersCursDynamicXMLResponse.java | 140 + .../java/ru/cbr/web/GetReutersCursOnDate.java | 67 + .../cbr/web/GetReutersCursOnDateResponse.java | 130 + .../ru/cbr/web/GetReutersCursOnDateXML.java | 67 + .../web/GetReutersCursOnDateXMLResponse.java | 140 + .../java/ru/cbr/web/GetSeldCursOnDate.java | 67 + .../ru/cbr/web/GetSeldCursOnDateResponse.java | 130 + .../java/ru/cbr/web/GetSeldCursOnDateXML.java | 67 + .../cbr/web/GetSeldCursOnDateXMLResponse.java | 140 + src/main/java/ru/cbr/web/MKR.java | 96 + src/main/java/ru/cbr/web/MKRResponse.java | 130 + src/main/java/ru/cbr/web/MKRXML.java | 96 + src/main/java/ru/cbr/web/MKRXMLResponse.java | 140 + src/main/java/ru/cbr/web/MainInfoXML.java | 32 + .../java/ru/cbr/web/MainInfoXMLResponse.java | 140 + src/main/java/ru/cbr/web/Mrrf.java | 96 + src/main/java/ru/cbr/web/Mrrf7D.java | 96 + src/main/java/ru/cbr/web/Mrrf7DResponse.java | 128 + src/main/java/ru/cbr/web/Mrrf7DXML.java | 96 + .../java/ru/cbr/web/Mrrf7DXMLResponse.java | 138 + src/main/java/ru/cbr/web/MrrfResponse.java | 128 + src/main/java/ru/cbr/web/MrrfXML.java | 96 + src/main/java/ru/cbr/web/MrrfXMLResponse.java | 138 + src/main/java/ru/cbr/web/NewsInfo.java | 96 + .../java/ru/cbr/web/NewsInfoResponse.java | 130 + src/main/java/ru/cbr/web/NewsInfoXML.java | 96 + .../java/ru/cbr/web/NewsInfoXMLResponse.java | 140 + src/main/java/ru/cbr/web/ObjectFactory.java | 1816 ++++++++ src/main/java/ru/cbr/web/OmodInfoXML.java | 32 + .../java/ru/cbr/web/OmodInfoXMLResponse.java | 140 + src/main/java/ru/cbr/web/OstatDepo.java | 96 + .../java/ru/cbr/web/OstatDepoResponse.java | 130 + src/main/java/ru/cbr/web/OstatDepoXML.java | 96 + .../java/ru/cbr/web/OstatDepoXMLResponse.java | 140 + src/main/java/ru/cbr/web/OstatDynamic.java | 96 + .../java/ru/cbr/web/OstatDynamicResponse.java | 130 + src/main/java/ru/cbr/web/OstatDynamicXML.java | 96 + .../ru/cbr/web/OstatDynamicXMLResponse.java | 140 + src/main/java/ru/cbr/web/Overnight.java | 96 + .../java/ru/cbr/web/OvernightResponse.java | 130 + src/main/java/ru/cbr/web/OvernightXML.java | 96 + .../java/ru/cbr/web/OvernightXMLResponse.java | 140 + src/main/java/ru/cbr/web/ROISfix.java | 96 + src/main/java/ru/cbr/web/ROISfixResponse.java | 130 + src/main/java/ru/cbr/web/ROISfixXML.java | 96 + .../java/ru/cbr/web/ROISfixXMLResponse.java | 140 + src/main/java/ru/cbr/web/RepoDebt.java | 96 + .../java/ru/cbr/web/RepoDebtResponse.java | 130 + src/main/java/ru/cbr/web/RepoDebtUSD.java | 96 + .../java/ru/cbr/web/RepoDebtUSDResponse.java | 130 + src/main/java/ru/cbr/web/RepoDebtUSDXML.java | 96 + .../ru/cbr/web/RepoDebtUSDXMLResponse.java | 140 + src/main/java/ru/cbr/web/RepoDebtXML.java | 96 + .../java/ru/cbr/web/RepoDebtXMLResponse.java | 140 + src/main/java/ru/cbr/web/Ruonia.java | 96 + src/main/java/ru/cbr/web/RuoniaResponse.java | 130 + src/main/java/ru/cbr/web/RuoniaXML.java | 96 + .../java/ru/cbr/web/RuoniaXMLResponse.java | 140 + src/main/java/ru/cbr/web/Saldo.java | 96 + src/main/java/ru/cbr/web/SaldoResponse.java | 130 + src/main/java/ru/cbr/web/SaldoXML.java | 96 + .../java/ru/cbr/web/SaldoXMLResponse.java | 140 + src/main/java/ru/cbr/web/SwapDayTotal.java | 96 + .../java/ru/cbr/web/SwapDayTotalResponse.java | 130 + src/main/java/ru/cbr/web/SwapDayTotalXML.java | 96 + .../ru/cbr/web/SwapDayTotalXMLResponse.java | 140 + src/main/java/ru/cbr/web/SwapDynamic.java | 96 + .../java/ru/cbr/web/SwapDynamicResponse.java | 130 + src/main/java/ru/cbr/web/SwapDynamicXML.java | 96 + .../ru/cbr/web/SwapDynamicXMLResponse.java | 140 + src/main/java/ru/cbr/web/SwapInfoSellUSD.java | 96 + .../ru/cbr/web/SwapInfoSellUSDResponse.java | 130 + .../java/ru/cbr/web/SwapInfoSellUSDVol.java | 96 + .../cbr/web/SwapInfoSellUSDVolResponse.java | 130 + .../ru/cbr/web/SwapInfoSellUSDVolXML.java | 96 + .../web/SwapInfoSellUSDVolXMLResponse.java | 140 + .../java/ru/cbr/web/SwapInfoSellUSDXML.java | 96 + .../cbr/web/SwapInfoSellUSDXMLResponse.java | 140 + src/main/java/ru/cbr/web/SwapMonthTotal.java | 96 + .../ru/cbr/web/SwapMonthTotalResponse.java | 130 + .../java/ru/cbr/web/SwapMonthTotalXML.java | 96 + .../ru/cbr/web/SwapMonthTotalXMLResponse.java | 140 + src/main/java/ru/cbr/web/TestCbr/CbrInfo.java | 41 + .../TestCbr/GetCursOnDateResultParser.java | 151 + src/main/java/ru/cbr/web/ValIntDay.java | 96 + .../java/ru/cbr/web/ValIntDayResponse.java | 130 + src/main/java/ru/cbr/web/ValIntDayXML.java | 96 + .../java/ru/cbr/web/ValIntDayXMLResponse.java | 140 + src/main/java/ru/cbr/web/XVol.java | 96 + src/main/java/ru/cbr/web/XVolResponse.java | 130 + src/main/java/ru/cbr/web/XVolXML.java | 96 + src/main/java/ru/cbr/web/XVolXMLResponse.java | 140 + src/main/java/ru/cbr/web/package-info.java | 6 + 160 files changed, 23449 insertions(+) create mode 100644 cbrInfo.wsdl create mode 100644 src/main/java/ru/cbr/web/AllDataInfoXML.java create mode 100644 src/main/java/ru/cbr/web/AllDataInfoXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/Bauction.java create mode 100644 src/main/java/ru/cbr/web/BauctionResponse.java create mode 100644 src/main/java/ru/cbr/web/BauctionXML.java create mode 100644 src/main/java/ru/cbr/web/BauctionXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/BiCurBacket.java create mode 100644 src/main/java/ru/cbr/web/BiCurBacketResponse.java create mode 100644 src/main/java/ru/cbr/web/BiCurBacketXML.java create mode 100644 src/main/java/ru/cbr/web/BiCurBacketXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/BiCurBase.java create mode 100644 src/main/java/ru/cbr/web/BiCurBaseResponse.java create mode 100644 src/main/java/ru/cbr/web/BiCurBaseXML.java create mode 100644 src/main/java/ru/cbr/web/BiCurBaseXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/CoinsBase.java create mode 100644 src/main/java/ru/cbr/web/CoinsBaseResponse.java create mode 100644 src/main/java/ru/cbr/web/CoinsBaseXML.java create mode 100644 src/main/java/ru/cbr/web/CoinsBaseXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/DV.java create mode 100644 src/main/java/ru/cbr/web/DVResponse.java create mode 100644 src/main/java/ru/cbr/web/DVXML.java create mode 100644 src/main/java/ru/cbr/web/DVXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/DailyInfo.java create mode 100644 src/main/java/ru/cbr/web/DailyInfoSoap.java create mode 100644 src/main/java/ru/cbr/web/DepoDynamic.java create mode 100644 src/main/java/ru/cbr/web/DepoDynamicResponse.java create mode 100644 src/main/java/ru/cbr/web/DepoDynamicXML.java create mode 100644 src/main/java/ru/cbr/web/DepoDynamicXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/DragMetDynamic.java create mode 100644 src/main/java/ru/cbr/web/DragMetDynamicResponse.java create mode 100644 src/main/java/ru/cbr/web/DragMetDynamicXML.java create mode 100644 src/main/java/ru/cbr/web/DragMetDynamicXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/EnumReutersValutes.java create mode 100644 src/main/java/ru/cbr/web/EnumReutersValutesResponse.java create mode 100644 src/main/java/ru/cbr/web/EnumReutersValutesXML.java create mode 100644 src/main/java/ru/cbr/web/EnumReutersValutesXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/EnumValutes.java create mode 100644 src/main/java/ru/cbr/web/EnumValutesResponse.java create mode 100644 src/main/java/ru/cbr/web/EnumValutesXML.java create mode 100644 src/main/java/ru/cbr/web/EnumValutesXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/FixingBase.java create mode 100644 src/main/java/ru/cbr/web/FixingBaseResponse.java create mode 100644 src/main/java/ru/cbr/web/FixingBaseXML.java create mode 100644 src/main/java/ru/cbr/web/FixingBaseXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/GetCursDynamic.java create mode 100644 src/main/java/ru/cbr/web/GetCursDynamicResponse.java create mode 100644 src/main/java/ru/cbr/web/GetCursDynamicXML.java create mode 100644 src/main/java/ru/cbr/web/GetCursDynamicXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/GetCursOnDate.java create mode 100644 src/main/java/ru/cbr/web/GetCursOnDateResponse.java create mode 100644 src/main/java/ru/cbr/web/GetCursOnDateXML.java create mode 100644 src/main/java/ru/cbr/web/GetCursOnDateXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDate.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateResponse.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateSeld.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateSeldResponse.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateTime.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateTimeResponse.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateTimeSeld.java create mode 100644 src/main/java/ru/cbr/web/GetLatestDateTimeSeldResponse.java create mode 100644 src/main/java/ru/cbr/web/GetLatestReutersDateTime.java create mode 100644 src/main/java/ru/cbr/web/GetLatestReutersDateTimeResponse.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursDynamic.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursDynamicResponse.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursDynamicXML.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursDynamicXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursOnDate.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursOnDateResponse.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursOnDateXML.java create mode 100644 src/main/java/ru/cbr/web/GetReutersCursOnDateXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/GetSeldCursOnDate.java create mode 100644 src/main/java/ru/cbr/web/GetSeldCursOnDateResponse.java create mode 100644 src/main/java/ru/cbr/web/GetSeldCursOnDateXML.java create mode 100644 src/main/java/ru/cbr/web/GetSeldCursOnDateXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/MKR.java create mode 100644 src/main/java/ru/cbr/web/MKRResponse.java create mode 100644 src/main/java/ru/cbr/web/MKRXML.java create mode 100644 src/main/java/ru/cbr/web/MKRXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/MainInfoXML.java create mode 100644 src/main/java/ru/cbr/web/MainInfoXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/Mrrf.java create mode 100644 src/main/java/ru/cbr/web/Mrrf7D.java create mode 100644 src/main/java/ru/cbr/web/Mrrf7DResponse.java create mode 100644 src/main/java/ru/cbr/web/Mrrf7DXML.java create mode 100644 src/main/java/ru/cbr/web/Mrrf7DXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/MrrfResponse.java create mode 100644 src/main/java/ru/cbr/web/MrrfXML.java create mode 100644 src/main/java/ru/cbr/web/MrrfXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/NewsInfo.java create mode 100644 src/main/java/ru/cbr/web/NewsInfoResponse.java create mode 100644 src/main/java/ru/cbr/web/NewsInfoXML.java create mode 100644 src/main/java/ru/cbr/web/NewsInfoXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/ObjectFactory.java create mode 100644 src/main/java/ru/cbr/web/OmodInfoXML.java create mode 100644 src/main/java/ru/cbr/web/OmodInfoXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/OstatDepo.java create mode 100644 src/main/java/ru/cbr/web/OstatDepoResponse.java create mode 100644 src/main/java/ru/cbr/web/OstatDepoXML.java create mode 100644 src/main/java/ru/cbr/web/OstatDepoXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/OstatDynamic.java create mode 100644 src/main/java/ru/cbr/web/OstatDynamicResponse.java create mode 100644 src/main/java/ru/cbr/web/OstatDynamicXML.java create mode 100644 src/main/java/ru/cbr/web/OstatDynamicXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/Overnight.java create mode 100644 src/main/java/ru/cbr/web/OvernightResponse.java create mode 100644 src/main/java/ru/cbr/web/OvernightXML.java create mode 100644 src/main/java/ru/cbr/web/OvernightXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/ROISfix.java create mode 100644 src/main/java/ru/cbr/web/ROISfixResponse.java create mode 100644 src/main/java/ru/cbr/web/ROISfixXML.java create mode 100644 src/main/java/ru/cbr/web/ROISfixXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/RepoDebt.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtResponse.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtUSD.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtUSDResponse.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtUSDXML.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtUSDXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtXML.java create mode 100644 src/main/java/ru/cbr/web/RepoDebtXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/Ruonia.java create mode 100644 src/main/java/ru/cbr/web/RuoniaResponse.java create mode 100644 src/main/java/ru/cbr/web/RuoniaXML.java create mode 100644 src/main/java/ru/cbr/web/RuoniaXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/Saldo.java create mode 100644 src/main/java/ru/cbr/web/SaldoResponse.java create mode 100644 src/main/java/ru/cbr/web/SaldoXML.java create mode 100644 src/main/java/ru/cbr/web/SaldoXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapDayTotal.java create mode 100644 src/main/java/ru/cbr/web/SwapDayTotalResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapDayTotalXML.java create mode 100644 src/main/java/ru/cbr/web/SwapDayTotalXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapDynamic.java create mode 100644 src/main/java/ru/cbr/web/SwapDynamicResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapDynamicXML.java create mode 100644 src/main/java/ru/cbr/web/SwapDynamicXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSD.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDVol.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDVolResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDVolXML.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDVolXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDXML.java create mode 100644 src/main/java/ru/cbr/web/SwapInfoSellUSDXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapMonthTotal.java create mode 100644 src/main/java/ru/cbr/web/SwapMonthTotalResponse.java create mode 100644 src/main/java/ru/cbr/web/SwapMonthTotalXML.java create mode 100644 src/main/java/ru/cbr/web/SwapMonthTotalXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/TestCbr/CbrInfo.java create mode 100644 src/main/java/ru/cbr/web/TestCbr/GetCursOnDateResultParser.java create mode 100644 src/main/java/ru/cbr/web/ValIntDay.java create mode 100644 src/main/java/ru/cbr/web/ValIntDayResponse.java create mode 100644 src/main/java/ru/cbr/web/ValIntDayXML.java create mode 100644 src/main/java/ru/cbr/web/ValIntDayXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/XVol.java create mode 100644 src/main/java/ru/cbr/web/XVolResponse.java create mode 100644 src/main/java/ru/cbr/web/XVolXML.java create mode 100644 src/main/java/ru/cbr/web/XVolXMLResponse.java create mode 100644 src/main/java/ru/cbr/web/package-info.java diff --git a/cbrInfo.wsdl b/cbrInfo.wsdl new file mode 100644 index 0000000..1193cc8 --- /dev/null +++ b/cbrInfo.wsdl @@ -0,0 +1,3731 @@ + + + Веб сервис для получения ежедневных данных ver 31.01.2017 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Сальдо операций ЦБ РФ по предоставлению/абсорбированию ликвидности (XMLDocument) + + + + + Ставка ROISfix (XMLDocument) + + + + + Ставка Ruonia (XMLDocument) + + + + + Депозиты банков в Банке России (млн. руб) (как xmlDocument) + + + + + Данные по интервенциям Банка России на внутреннем валютном рынке - Ежедневные значения (как xmlDocument) + + + + + Данные по интервенциям Банка России на внутреннем валютном рынке - Ежедневные значения + + + + + Депозиты банков в Банке России (млн. руб) + + + + + Ставка ROISfix (DataSet) + + + + + Ставка RUONIA (DataSet) + + + + + Международные резервы Российской Федерации, еженедельные значения (DataSet) + + + + + Международные резервы Российской Федерации, еженедельные значения (XMLDocument) + + + + + Задолженность кредитных организаций перед Банком России по операциям РЕПО в иностранной валюте (DataSet) + + + + + Задолженность кредитных организаций перед Банком России по операциям РЕПО в иностранной валюте (XMLDocument) + + + + + Международные резервы Российской Федерации, ежемесячные значения (DataSet) + + + + + Международные резервы Российской Федерации, ежемесячные значения (XMLDocument) + + + + + Сальдо операций ЦБ РФ по предоставлению/абсорбированию ликвидности (DataSet) + + + + + Получение новостей сервера (XMLDocument) + + + + + Операции на открытом рынке (как XMLDocument) + + + + + Операции Банка России на рынке государственных ценных бумаг по поручению Министерства финансов Российской Федерации (как DataSet) + + + + + Операции Банка России на рынке государственных ценных бумаг по поручению Министерства финансов Российской Федерации (XMLDocument) + + + + + Получение основной информации - Ставка рефинансирования, золотовалютные резервы, денежная база, денежная масса (как XMLDocument) + + + + + Получение всей оперативной информации (XmlDocument) ver 26.01.2017 + + + + + Получение новостей сервера (DataSet) + + + + + Задолженность кредитных организаций перед Банком России по сделкам «валютный своп» (DataSet) + + + + + Задолженность кредитных организаций перед Банком России по сделкам «валютный своп» (XMLDocument) + + + + + Валютный своп buy/sell overnight (XMLDocument) + + + + + Объем сделок «валютный своп» по продаже долларов США за рубли, заключенных Банком России (XMLDocument) + + + + + Объем сделок «валютный своп» по продаже долларов США за рубли, заключенных Банком России (DataSet) ver 21.11.2014 + + + + + Условия заключения сделок «валютный своп» по продаже долларов США за рубли (DataSet) ver 18.09.2014 + + + + + Условия заключения сделок «валютный своп» по продаже долларов США за рубли (как xmlDocument) + + + + + Стоимость бивалютной корзины (как xmlDocument) + + + + + Стоимость бивалютной корзины (DataSet) ver 03.12.2014 + + + + + Структура бивалютной корзины (как xmlDocument) + + + + + Структура бивалютной корзины (DataSet) ver 03.12.2014 + + + + + Условия заключения сделок «валютный своп» по покупке долларов США и евро за рубли (DataSet) ver 31.07.2012 + + + + + Объем сделок 'валютный своп' Банка России (DataSet) ver 03.04.2014 + + + + + Объем сделок 'валютный своп' Банка России (как xmlDocument) + + + + + Ставки межбанковского кредитного рынка (DataSet) ver 31.07.2012 + + + + + Ставки межбанковского кредитного рынка (как xmlDocument) + + + + + Требования Банка России к кредитным организациям (DataSet) ver 31.07.2012 + + + + + Требования Банка России к кредитным организациям (как xmlDocument) + + + + + Задолженность кредитных организаций перед Банком России по операциям прямого РЕПО (DataSet) ver 18.06.2014 + + + + + Задолженность кредитных организаций перед Банком России по операциям прямого РЕПО (как xmlDocument) + + + + + Отпускные цены Банка России на инвестиционные монеты (DataSet) ver 31.07.2012 + + + + + Отпускные цены Банка России на инвестиционные монеты (как xmlDocument) + + + + + Фиксинги на драгоценные металлы (DataSet) ver 31.07.2012 + + + + + Фиксинги на драгоценные металлы (как xmlDocument) + + + + + Ставки по кредиту 'overnight' (DataSet) ver 31.07.2012 + + + + + Ставки по кредиту 'overnight' (как xmlDocument + + + + + База данных по размещению бюджетных средств на депозиты коммерческих банков (DataSet) ver 31.07.2012 + + + + + База данных по размещению бюджетных средств на депозиты коммерческих банков (как xmlDocument + + + + + Динамики ставок привлечения средств по депозитным операциям (как xmlDocument + + + + + Динамика ставок привлечения средств по депозитным операциям (DataSet) + + + + + Динамики сведений об остатках средств на корреспондентских счетах кредитных организаций (XMLDocument). + + + + + Динамики сведений об остатках средств на корреспондентских счетах кредитных организаций (DataSet)! + + + + + Динамика учетных цен драгоценных металлов (как XMLDocument) + + + + + Динамика учетных цен драгоценных металлов (DataSet) + + + + + Последняя дата публикации курсов валют как DateTime (ежедневные валюты) + + + + + Последняя дата публикации курсов валют(ежемесячные валюты) - строка + + + + + Последняя дата публикации курсов валют как DateTime (ежемесячные валюты) + + + + + Последняя дата публикации курсов валют (ежемесячные валюты) - строка yyyyMMdd + + + + + Справочник по кодам валют (как XMLDocument) + + + + + Справочник по кодам валют (как DataSet) + + + + + Последняя дата публикации редких валют от Thomson Reuters как DateTime (ежемесячные валюты) + + + + + Справочник по кодам редких валют от Thomson Reuters (как XMLDocument) + + + + + Справочник по кодам редких валют от Thomson Reuters (как DataSet) + + + + + Получение ежедневных курсов редких валют от Thomson Reuters (как XMLDocument) + + + + + Получение ежедневных курсов редких валют от Thomson Reuters (как DataSet) + + + + + Получение динамики ежедневных курсов редкой валюты от Thomson Reuters (как XMLDocument) + + + + + Получение динамики ежедневных курсов редкой валюты от Thomson Reuters (как DataSet) + + + + + Получение динамики ежедневных курсов валюты (как XMLDocument) + + + + + Получение динамики ежедневных курсов валюты (как DataSet) + + + + + Получение ежедневных курсов валют (как XMLDocument) + + + + + Получение ежемесячных курсов валют !*устаревший! (как XMLDocument) + + + + + Получение ежемесячных курсов валют !*устаревший! (как DataSet) + + + + + Получение ежедневных курсов валют (как DataSet) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Веб сервис для получения ежедневных данных ver 31.01.2017 + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 215c3bf..bd3124e 100644 --- a/pom.xml +++ b/pom.xml @@ -131,6 +131,12 @@ mockito-all 1.10.19 + + + xerces + xercesImpl + 2.11.0 + diff --git a/src/main/java/ru/cbr/web/AllDataInfoXML.java b/src/main/java/ru/cbr/web/AllDataInfoXML.java new file mode 100644 index 0000000..96ffcef --- /dev/null +++ b/src/main/java/ru/cbr/web/AllDataInfoXML.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "AllDataInfoXML") +public class AllDataInfoXML { + + +} diff --git a/src/main/java/ru/cbr/web/AllDataInfoXMLResponse.java b/src/main/java/ru/cbr/web/AllDataInfoXMLResponse.java new file mode 100644 index 0000000..a6afd02 --- /dev/null +++ b/src/main/java/ru/cbr/web/AllDataInfoXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="AllDataInfoXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "allDataInfoXMLResult" +}) +@XmlRootElement(name = "AllDataInfoXMLResponse") +public class AllDataInfoXMLResponse { + + @XmlElement(name = "AllDataInfoXMLResult") + protected AllDataInfoXMLResponse.AllDataInfoXMLResult allDataInfoXMLResult; + + /** + * Gets the value of the allDataInfoXMLResult property. + * + * @return + * possible object is + * {@link AllDataInfoXMLResponse.AllDataInfoXMLResult } + * + */ + public AllDataInfoXMLResponse.AllDataInfoXMLResult getAllDataInfoXMLResult() { + return allDataInfoXMLResult; + } + + /** + * Sets the value of the allDataInfoXMLResult property. + * + * @param value + * allowed object is + * {@link AllDataInfoXMLResponse.AllDataInfoXMLResult } + * + */ + public void setAllDataInfoXMLResult(AllDataInfoXMLResponse.AllDataInfoXMLResult value) { + this.allDataInfoXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class AllDataInfoXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/Bauction.java b/src/main/java/ru/cbr/web/Bauction.java new file mode 100644 index 0000000..369f33f --- /dev/null +++ b/src/main/java/ru/cbr/web/Bauction.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Bauction") +public class Bauction { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/BauctionResponse.java b/src/main/java/ru/cbr/web/BauctionResponse.java new file mode 100644 index 0000000..07595f4 --- /dev/null +++ b/src/main/java/ru/cbr/web/BauctionResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="BauctionResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bauctionResult" +}) +@XmlRootElement(name = "BauctionResponse") +public class BauctionResponse { + + @XmlElement(name = "BauctionResult") + protected BauctionResponse.BauctionResult bauctionResult; + + /** + * Gets the value of the bauctionResult property. + * + * @return + * possible object is + * {@link BauctionResponse.BauctionResult } + * + */ + public BauctionResponse.BauctionResult getBauctionResult() { + return bauctionResult; + } + + /** + * Sets the value of the bauctionResult property. + * + * @param value + * allowed object is + * {@link BauctionResponse.BauctionResult } + * + */ + public void setBauctionResult(BauctionResponse.BauctionResult value) { + this.bauctionResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class BauctionResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/BauctionXML.java b/src/main/java/ru/cbr/web/BauctionXML.java new file mode 100644 index 0000000..bd649f9 --- /dev/null +++ b/src/main/java/ru/cbr/web/BauctionXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "BauctionXML") +public class BauctionXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/BauctionXMLResponse.java b/src/main/java/ru/cbr/web/BauctionXMLResponse.java new file mode 100644 index 0000000..6c63c5d --- /dev/null +++ b/src/main/java/ru/cbr/web/BauctionXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="BauctionXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "bauctionXMLResult" +}) +@XmlRootElement(name = "BauctionXMLResponse") +public class BauctionXMLResponse { + + @XmlElement(name = "BauctionXMLResult") + protected BauctionXMLResponse.BauctionXMLResult bauctionXMLResult; + + /** + * Gets the value of the bauctionXMLResult property. + * + * @return + * possible object is + * {@link BauctionXMLResponse.BauctionXMLResult } + * + */ + public BauctionXMLResponse.BauctionXMLResult getBauctionXMLResult() { + return bauctionXMLResult; + } + + /** + * Sets the value of the bauctionXMLResult property. + * + * @param value + * allowed object is + * {@link BauctionXMLResponse.BauctionXMLResult } + * + */ + public void setBauctionXMLResult(BauctionXMLResponse.BauctionXMLResult value) { + this.bauctionXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class BauctionXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/BiCurBacket.java b/src/main/java/ru/cbr/web/BiCurBacket.java new file mode 100644 index 0000000..5914ee4 --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBacket.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "BiCurBacket") +public class BiCurBacket { + + +} diff --git a/src/main/java/ru/cbr/web/BiCurBacketResponse.java b/src/main/java/ru/cbr/web/BiCurBacketResponse.java new file mode 100644 index 0000000..94ce805 --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBacketResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="BiCurBacketResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "biCurBacketResult" +}) +@XmlRootElement(name = "BiCurBacketResponse") +public class BiCurBacketResponse { + + @XmlElement(name = "BiCurBacketResult") + protected BiCurBacketResponse.BiCurBacketResult biCurBacketResult; + + /** + * Gets the value of the biCurBacketResult property. + * + * @return + * possible object is + * {@link BiCurBacketResponse.BiCurBacketResult } + * + */ + public BiCurBacketResponse.BiCurBacketResult getBiCurBacketResult() { + return biCurBacketResult; + } + + /** + * Sets the value of the biCurBacketResult property. + * + * @param value + * allowed object is + * {@link BiCurBacketResponse.BiCurBacketResult } + * + */ + public void setBiCurBacketResult(BiCurBacketResponse.BiCurBacketResult value) { + this.biCurBacketResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class BiCurBacketResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/BiCurBacketXML.java b/src/main/java/ru/cbr/web/BiCurBacketXML.java new file mode 100644 index 0000000..a8a929e --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBacketXML.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "BiCurBacketXML") +public class BiCurBacketXML { + + +} diff --git a/src/main/java/ru/cbr/web/BiCurBacketXMLResponse.java b/src/main/java/ru/cbr/web/BiCurBacketXMLResponse.java new file mode 100644 index 0000000..e9b34e8 --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBacketXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="BiCurBacketXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "biCurBacketXMLResult" +}) +@XmlRootElement(name = "BiCurBacketXMLResponse") +public class BiCurBacketXMLResponse { + + @XmlElement(name = "BiCurBacketXMLResult") + protected BiCurBacketXMLResponse.BiCurBacketXMLResult biCurBacketXMLResult; + + /** + * Gets the value of the biCurBacketXMLResult property. + * + * @return + * possible object is + * {@link BiCurBacketXMLResponse.BiCurBacketXMLResult } + * + */ + public BiCurBacketXMLResponse.BiCurBacketXMLResult getBiCurBacketXMLResult() { + return biCurBacketXMLResult; + } + + /** + * Sets the value of the biCurBacketXMLResult property. + * + * @param value + * allowed object is + * {@link BiCurBacketXMLResponse.BiCurBacketXMLResult } + * + */ + public void setBiCurBacketXMLResult(BiCurBacketXMLResponse.BiCurBacketXMLResult value) { + this.biCurBacketXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class BiCurBacketXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/BiCurBase.java b/src/main/java/ru/cbr/web/BiCurBase.java new file mode 100644 index 0000000..b1753f2 --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBase.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "BiCurBase") +public class BiCurBase { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/BiCurBaseResponse.java b/src/main/java/ru/cbr/web/BiCurBaseResponse.java new file mode 100644 index 0000000..dcb5d91 --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBaseResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="BiCurBaseResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "biCurBaseResult" +}) +@XmlRootElement(name = "BiCurBaseResponse") +public class BiCurBaseResponse { + + @XmlElement(name = "BiCurBaseResult") + protected BiCurBaseResponse.BiCurBaseResult biCurBaseResult; + + /** + * Gets the value of the biCurBaseResult property. + * + * @return + * possible object is + * {@link BiCurBaseResponse.BiCurBaseResult } + * + */ + public BiCurBaseResponse.BiCurBaseResult getBiCurBaseResult() { + return biCurBaseResult; + } + + /** + * Sets the value of the biCurBaseResult property. + * + * @param value + * allowed object is + * {@link BiCurBaseResponse.BiCurBaseResult } + * + */ + public void setBiCurBaseResult(BiCurBaseResponse.BiCurBaseResult value) { + this.biCurBaseResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class BiCurBaseResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/BiCurBaseXML.java b/src/main/java/ru/cbr/web/BiCurBaseXML.java new file mode 100644 index 0000000..050accc --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBaseXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "BiCurBaseXML") +public class BiCurBaseXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/BiCurBaseXMLResponse.java b/src/main/java/ru/cbr/web/BiCurBaseXMLResponse.java new file mode 100644 index 0000000..33a2037 --- /dev/null +++ b/src/main/java/ru/cbr/web/BiCurBaseXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="BiCurBaseXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "biCurBaseXMLResult" +}) +@XmlRootElement(name = "BiCurBaseXMLResponse") +public class BiCurBaseXMLResponse { + + @XmlElement(name = "BiCurBaseXMLResult") + protected BiCurBaseXMLResponse.BiCurBaseXMLResult biCurBaseXMLResult; + + /** + * Gets the value of the biCurBaseXMLResult property. + * + * @return + * possible object is + * {@link BiCurBaseXMLResponse.BiCurBaseXMLResult } + * + */ + public BiCurBaseXMLResponse.BiCurBaseXMLResult getBiCurBaseXMLResult() { + return biCurBaseXMLResult; + } + + /** + * Sets the value of the biCurBaseXMLResult property. + * + * @param value + * allowed object is + * {@link BiCurBaseXMLResponse.BiCurBaseXMLResult } + * + */ + public void setBiCurBaseXMLResult(BiCurBaseXMLResponse.BiCurBaseXMLResult value) { + this.biCurBaseXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class BiCurBaseXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/CoinsBase.java b/src/main/java/ru/cbr/web/CoinsBase.java new file mode 100644 index 0000000..64806a7 --- /dev/null +++ b/src/main/java/ru/cbr/web/CoinsBase.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Coins_base") +public class CoinsBase { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/CoinsBaseResponse.java b/src/main/java/ru/cbr/web/CoinsBaseResponse.java new file mode 100644 index 0000000..6bf946d --- /dev/null +++ b/src/main/java/ru/cbr/web/CoinsBaseResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Coins_baseResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "coinsBaseResult" +}) +@XmlRootElement(name = "Coins_baseResponse") +public class CoinsBaseResponse { + + @XmlElement(name = "Coins_baseResult") + protected CoinsBaseResponse.CoinsBaseResult coinsBaseResult; + + /** + * Gets the value of the coinsBaseResult property. + * + * @return + * possible object is + * {@link CoinsBaseResponse.CoinsBaseResult } + * + */ + public CoinsBaseResponse.CoinsBaseResult getCoinsBaseResult() { + return coinsBaseResult; + } + + /** + * Sets the value of the coinsBaseResult property. + * + * @param value + * allowed object is + * {@link CoinsBaseResponse.CoinsBaseResult } + * + */ + public void setCoinsBaseResult(CoinsBaseResponse.CoinsBaseResult value) { + this.coinsBaseResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class CoinsBaseResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/CoinsBaseXML.java b/src/main/java/ru/cbr/web/CoinsBaseXML.java new file mode 100644 index 0000000..d7fb12c --- /dev/null +++ b/src/main/java/ru/cbr/web/CoinsBaseXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Coins_baseXML") +public class CoinsBaseXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/CoinsBaseXMLResponse.java b/src/main/java/ru/cbr/web/CoinsBaseXMLResponse.java new file mode 100644 index 0000000..2bd4946 --- /dev/null +++ b/src/main/java/ru/cbr/web/CoinsBaseXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Coins_baseXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "coinsBaseXMLResult" +}) +@XmlRootElement(name = "Coins_baseXMLResponse") +public class CoinsBaseXMLResponse { + + @XmlElement(name = "Coins_baseXMLResult") + protected CoinsBaseXMLResponse.CoinsBaseXMLResult coinsBaseXMLResult; + + /** + * Gets the value of the coinsBaseXMLResult property. + * + * @return + * possible object is + * {@link CoinsBaseXMLResponse.CoinsBaseXMLResult } + * + */ + public CoinsBaseXMLResponse.CoinsBaseXMLResult getCoinsBaseXMLResult() { + return coinsBaseXMLResult; + } + + /** + * Sets the value of the coinsBaseXMLResult property. + * + * @param value + * allowed object is + * {@link CoinsBaseXMLResponse.CoinsBaseXMLResult } + * + */ + public void setCoinsBaseXMLResult(CoinsBaseXMLResponse.CoinsBaseXMLResult value) { + this.coinsBaseXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class CoinsBaseXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/DV.java b/src/main/java/ru/cbr/web/DV.java new file mode 100644 index 0000000..8f89fcb --- /dev/null +++ b/src/main/java/ru/cbr/web/DV.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "DV") +public class DV { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/DVResponse.java b/src/main/java/ru/cbr/web/DVResponse.java new file mode 100644 index 0000000..3f72247 --- /dev/null +++ b/src/main/java/ru/cbr/web/DVResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DVResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "dvResult" +}) +@XmlRootElement(name = "DVResponse") +public class DVResponse { + + @XmlElement(name = "DVResult") + protected DVResponse.DVResult dvResult; + + /** + * Gets the value of the dvResult property. + * + * @return + * possible object is + * {@link DVResponse.DVResult } + * + */ + public DVResponse.DVResult getDVResult() { + return dvResult; + } + + /** + * Sets the value of the dvResult property. + * + * @param value + * allowed object is + * {@link DVResponse.DVResult } + * + */ + public void setDVResult(DVResponse.DVResult value) { + this.dvResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class DVResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/DVXML.java b/src/main/java/ru/cbr/web/DVXML.java new file mode 100644 index 0000000..f5d5c3e --- /dev/null +++ b/src/main/java/ru/cbr/web/DVXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "DVXML") +public class DVXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/DVXMLResponse.java b/src/main/java/ru/cbr/web/DVXMLResponse.java new file mode 100644 index 0000000..3bf86ee --- /dev/null +++ b/src/main/java/ru/cbr/web/DVXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DVXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "dvxmlResult" +}) +@XmlRootElement(name = "DVXMLResponse") +public class DVXMLResponse { + + @XmlElement(name = "DVXMLResult") + protected DVXMLResponse.DVXMLResult dvxmlResult; + + /** + * Gets the value of the dvxmlResult property. + * + * @return + * possible object is + * {@link DVXMLResponse.DVXMLResult } + * + */ + public DVXMLResponse.DVXMLResult getDVXMLResult() { + return dvxmlResult; + } + + /** + * Sets the value of the dvxmlResult property. + * + * @param value + * allowed object is + * {@link DVXMLResponse.DVXMLResult } + * + */ + public void setDVXMLResult(DVXMLResponse.DVXMLResult value) { + this.dvxmlResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class DVXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/DailyInfo.java b/src/main/java/ru/cbr/web/DailyInfo.java new file mode 100644 index 0000000..81b699f --- /dev/null +++ b/src/main/java/ru/cbr/web/DailyInfo.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import java.net.MalformedURLException; +import java.net.URL; +import javax.xml.namespace.QName; +import javax.xml.ws.Service; +import javax.xml.ws.WebEndpoint; +import javax.xml.ws.WebServiceClient; +import javax.xml.ws.WebServiceException; +import javax.xml.ws.WebServiceFeature; + + +/** + * ver 31.01.2017 + * + * This class was generated by the JAX-WS RI. + * JAX-WS RI 2.2.9-b130926.1035 + * Generated source version: 2.2 + * + */ +@WebServiceClient(name = "DailyInfo", targetNamespace = "http://web.cbr.ru/", wsdlLocation = "file:/D:/Programming/Projects/Java%20Lessons/Khasang/delivery/cbrInfo.wsdl") +public class DailyInfo + extends Service +{ + + private final static URL DAILYINFO_WSDL_LOCATION; + private final static WebServiceException DAILYINFO_EXCEPTION; + private final static QName DAILYINFO_QNAME = new QName("http://web.cbr.ru/", "DailyInfo"); + + static { + URL url = null; + WebServiceException e = null; + try { + url = new URL("file:/D:/Programming/Projects/Java%20Lessons/Khasang/delivery/cbrInfo.wsdl"); + } catch (MalformedURLException ex) { + e = new WebServiceException(ex); + } + DAILYINFO_WSDL_LOCATION = url; + DAILYINFO_EXCEPTION = e; + } + + public DailyInfo() { + super(__getWsdlLocation(), DAILYINFO_QNAME); + } + + public DailyInfo(WebServiceFeature... features) { + super(__getWsdlLocation(), DAILYINFO_QNAME, features); + } + + public DailyInfo(URL wsdlLocation) { + super(wsdlLocation, DAILYINFO_QNAME); + } + + public DailyInfo(URL wsdlLocation, WebServiceFeature... features) { + super(wsdlLocation, DAILYINFO_QNAME, features); + } + + public DailyInfo(URL wsdlLocation, QName serviceName) { + super(wsdlLocation, serviceName); + } + + public DailyInfo(URL wsdlLocation, QName serviceName, WebServiceFeature... features) { + super(wsdlLocation, serviceName, features); + } + + /** + * + * @return + * returns DailyInfoSoap + */ + @WebEndpoint(name = "DailyInfoSoap") + public DailyInfoSoap getDailyInfoSoap() { + return super.getPort(new QName("http://web.cbr.ru/", "DailyInfoSoap"), DailyInfoSoap.class); + } + + /** + * + * @param features + * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. + * @return + * returns DailyInfoSoap + */ + @WebEndpoint(name = "DailyInfoSoap") + public DailyInfoSoap getDailyInfoSoap(WebServiceFeature... features) { + return super.getPort(new QName("http://web.cbr.ru/", "DailyInfoSoap"), DailyInfoSoap.class, features); + } + + private static URL __getWsdlLocation() { + if (DAILYINFO_EXCEPTION!= null) { + throw DAILYINFO_EXCEPTION; + } + return DAILYINFO_WSDL_LOCATION; + } + +} diff --git a/src/main/java/ru/cbr/web/DailyInfoSoap.java b/src/main/java/ru/cbr/web/DailyInfoSoap.java new file mode 100644 index 0000000..304807d --- /dev/null +++ b/src/main/java/ru/cbr/web/DailyInfoSoap.java @@ -0,0 +1,1311 @@ + +package ru.cbr.web; + +import javax.jws.WebMethod; +import javax.jws.WebParam; +import javax.jws.WebResult; +import javax.jws.WebService; +import javax.xml.bind.annotation.XmlSeeAlso; +import javax.xml.datatype.XMLGregorianCalendar; +import javax.xml.ws.RequestWrapper; +import javax.xml.ws.ResponseWrapper; + + +/** + * This class was generated by the JAX-WS RI. + * JAX-WS RI 2.2.9-b130926.1035 + * Generated source version: 2.2 + * + */ +@WebService(name = "DailyInfoSoap", targetNamespace = "http://web.cbr.ru/") +@XmlSeeAlso({ + ObjectFactory.class +}) +public interface DailyInfoSoap { + + + /** + * / (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SaldoXMLResponse.SaldoXMLResult + */ + @WebMethod(operationName = "SaldoXML", action = "http://web.cbr.ru/SaldoXML") + @WebResult(name = "SaldoXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SaldoXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SaldoXML") + @ResponseWrapper(localName = "SaldoXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SaldoXMLResponse") + public ru.cbr.web.SaldoXMLResponse.SaldoXMLResult saldoXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ROISfix (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.ROISfixXMLResponse.ROISfixXMLResult + */ + @WebMethod(operationName = "ROISfixXML", action = "http://web.cbr.ru/ROISfixXML") + @WebResult(name = "ROISfixXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "ROISfixXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ROISfixXML") + @ResponseWrapper(localName = "ROISfixXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ROISfixXMLResponse") + public ru.cbr.web.ROISfixXMLResponse.ROISfixXMLResult roiSfixXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * Ruonia (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.RuoniaXMLResponse.RuoniaXMLResult + */ + @WebMethod(operationName = "RuoniaXML", action = "http://web.cbr.ru/RuoniaXML") + @WebResult(name = "RuoniaXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "RuoniaXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RuoniaXML") + @ResponseWrapper(localName = "RuoniaXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RuoniaXMLResponse") + public ru.cbr.web.RuoniaXMLResponse.RuoniaXMLResult ruoniaXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (. ) ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.OstatDepoXMLResponse.OstatDepoXMLResult + */ + @WebMethod(operationName = "OstatDepoXML", action = "http://web.cbr.ru/OstatDepoXML") + @WebResult(name = "OstatDepoXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "OstatDepoXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDepoXML") + @ResponseWrapper(localName = "OstatDepoXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDepoXMLResponse") + public ru.cbr.web.OstatDepoXMLResponse.OstatDepoXMLResult ostatDepoXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * - ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.ValIntDayXMLResponse.ValIntDayXMLResult + */ + @WebMethod(operationName = "ValIntDayXML", action = "http://web.cbr.ru/ValIntDayXML") + @WebResult(name = "ValIntDayXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "ValIntDayXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ValIntDayXML") + @ResponseWrapper(localName = "ValIntDayXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ValIntDayXMLResponse") + public ru.cbr.web.ValIntDayXMLResponse.ValIntDayXMLResult valIntDayXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * - + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.ValIntDayResponse.ValIntDayResult + */ + @WebMethod(operationName = "ValIntDay", action = "http://web.cbr.ru/ValIntDay") + @WebResult(name = "ValIntDayResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "ValIntDay", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ValIntDay") + @ResponseWrapper(localName = "ValIntDayResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ValIntDayResponse") + public ru.cbr.web.ValIntDayResponse.ValIntDayResult valIntDay( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (. ) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.OstatDepoResponse.OstatDepoResult + */ + @WebMethod(operationName = "OstatDepo", action = "http://web.cbr.ru/OstatDepo") + @WebResult(name = "OstatDepoResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "OstatDepo", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDepo") + @ResponseWrapper(localName = "OstatDepoResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDepoResponse") + public ru.cbr.web.OstatDepoResponse.OstatDepoResult ostatDepo( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ROISfix (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.ROISfixResponse.ROISfixResult + */ + @WebMethod(operationName = "ROISfix", action = "http://web.cbr.ru/ROISfix") + @WebResult(name = "ROISfixResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "ROISfix", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ROISfix") + @ResponseWrapper(localName = "ROISfixResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.ROISfixResponse") + public ru.cbr.web.ROISfixResponse.ROISfixResult roiSfix( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * RUONIA (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.RuoniaResponse.RuoniaResult + */ + @WebMethod(operationName = "Ruonia", action = "http://web.cbr.ru/Ruonia") + @WebResult(name = "RuoniaResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Ruonia", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Ruonia") + @ResponseWrapper(localName = "RuoniaResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RuoniaResponse") + public ru.cbr.web.RuoniaResponse.RuoniaResult ruonia( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * , (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.Mrrf7DResponse.Mrrf7DResult + */ + @WebMethod(action = "http://web.cbr.ru/mrrf7D") + @WebResult(name = "mrrf7DResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "mrrf7D", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Mrrf7D") + @ResponseWrapper(localName = "mrrf7DResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Mrrf7DResponse") + public ru.cbr.web.Mrrf7DResponse.Mrrf7DResult mrrf7D( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * , (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.Mrrf7DXMLResponse.Mrrf7DXMLResult + */ + @WebMethod(action = "http://web.cbr.ru/mrrf7DXML") + @WebResult(name = "mrrf7DXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "mrrf7DXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Mrrf7DXML") + @ResponseWrapper(localName = "mrrf7DXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Mrrf7DXMLResponse") + public ru.cbr.web.Mrrf7DXMLResponse.Mrrf7DXMLResult mrrf7DXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.RepoDebtUSDResponse.RepoDebtUSDResult + */ + @WebMethod(operationName = "RepoDebtUSD", action = "http://web.cbr.ru/RepoDebtUSD") + @WebResult(name = "RepoDebtUSDResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "RepoDebtUSD", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtUSD") + @ResponseWrapper(localName = "RepoDebtUSDResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtUSDResponse") + public ru.cbr.web.RepoDebtUSDResponse.RepoDebtUSDResult repoDebtUSD( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult + */ + @WebMethod(operationName = "RepoDebtUSDXML", action = "http://web.cbr.ru/RepoDebtUSDXML") + @WebResult(name = "RepoDebtUSDXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "RepoDebtUSDXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtUSDXML") + @ResponseWrapper(localName = "RepoDebtUSDXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtUSDXMLResponse") + public ru.cbr.web.RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult repoDebtUSDXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * , (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.MrrfResponse.MrrfResult + */ + @WebMethod(action = "http://web.cbr.ru/mrrf") + @WebResult(name = "mrrfResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "mrrf", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Mrrf") + @ResponseWrapper(localName = "mrrfResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MrrfResponse") + public ru.cbr.web.MrrfResponse.MrrfResult mrrf( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * , (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.MrrfXMLResponse.MrrfXMLResult + */ + @WebMethod(action = "http://web.cbr.ru/mrrfXML") + @WebResult(name = "mrrfXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "mrrfXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MrrfXML") + @ResponseWrapper(localName = "mrrfXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MrrfXMLResponse") + public ru.cbr.web.MrrfXMLResponse.MrrfXMLResult mrrfXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * / (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SaldoResponse.SaldoResult + */ + @WebMethod(operationName = "Saldo", action = "http://web.cbr.ru/Saldo") + @WebResult(name = "SaldoResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Saldo", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Saldo") + @ResponseWrapper(localName = "SaldoResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SaldoResponse") + public ru.cbr.web.SaldoResponse.SaldoResult saldo( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.NewsInfoXMLResponse.NewsInfoXMLResult + */ + @WebMethod(operationName = "NewsInfoXML", action = "http://web.cbr.ru/NewsInfoXML") + @WebResult(name = "NewsInfoXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "NewsInfoXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.NewsInfoXML") + @ResponseWrapper(localName = "NewsInfoXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.NewsInfoXMLResponse") + public ru.cbr.web.NewsInfoXMLResponse.NewsInfoXMLResult newsInfoXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( XMLDocument) + * + * @return + * returns ru.cbr.web.OmodInfoXMLResponse.OmodInfoXMLResult + */ + @WebMethod(operationName = "OmodInfoXML", action = "http://web.cbr.ru/OmodInfoXML") + @WebResult(name = "OmodInfoXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "OmodInfoXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OmodInfoXML") + @ResponseWrapper(localName = "OmodInfoXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OmodInfoXMLResponse") + public ru.cbr.web.OmodInfoXMLResponse.OmodInfoXMLResult omodInfoXML(); + + /** + * ( DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.XVolResponse.XVolResult + */ + @WebMethod(operationName = "XVol", action = "http://web.cbr.ru/XVol") + @WebResult(name = "XVolResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "XVol", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.XVol") + @ResponseWrapper(localName = "XVolResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.XVolResponse") + public ru.cbr.web.XVolResponse.XVolResult xVol( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.XVolXMLResponse.XVolXMLResult + */ + @WebMethod(operationName = "XVolXML", action = "http://web.cbr.ru/XVolXML") + @WebResult(name = "XVolXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "XVolXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.XVolXML") + @ResponseWrapper(localName = "XVolXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.XVolXMLResponse") + public ru.cbr.web.XVolXMLResponse.XVolXMLResult xVolXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * - , , , ( XMLDocument) + * + * @return + * returns ru.cbr.web.MainInfoXMLResponse.MainInfoXMLResult + */ + @WebMethod(operationName = "MainInfoXML", action = "http://web.cbr.ru/MainInfoXML") + @WebResult(name = "MainInfoXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "MainInfoXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MainInfoXML") + @ResponseWrapper(localName = "MainInfoXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MainInfoXMLResponse") + public ru.cbr.web.MainInfoXMLResponse.MainInfoXMLResult mainInfoXML(); + + /** + * (XmlDocument) ver 26.01.2017 + * + * @return + * returns ru.cbr.web.AllDataInfoXMLResponse.AllDataInfoXMLResult + */ + @WebMethod(operationName = "AllDataInfoXML", action = "http://web.cbr.ru/AllDataInfoXML") + @WebResult(name = "AllDataInfoXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "AllDataInfoXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.AllDataInfoXML") + @ResponseWrapper(localName = "AllDataInfoXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.AllDataInfoXMLResponse") + public ru.cbr.web.AllDataInfoXMLResponse.AllDataInfoXMLResult allDataInfoXML(); + + /** + * (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.NewsInfoResponse.NewsInfoResult + */ + @WebMethod(operationName = "NewsInfo", action = "http://web.cbr.ru/NewsInfo") + @WebResult(name = "NewsInfoResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "NewsInfo", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.NewsInfo") + @ResponseWrapper(localName = "NewsInfoResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.NewsInfoResponse") + public ru.cbr.web.NewsInfoResponse.NewsInfoResult newsInfo( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapDayTotalResponse.SwapDayTotalResult + */ + @WebMethod(operationName = "SwapDayTotal", action = "http://web.cbr.ru/SwapDayTotal") + @WebResult(name = "SwapDayTotalResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapDayTotal", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDayTotal") + @ResponseWrapper(localName = "SwapDayTotalResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDayTotalResponse") + public ru.cbr.web.SwapDayTotalResponse.SwapDayTotalResult swapDayTotal( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapDayTotalXMLResponse.SwapDayTotalXMLResult + */ + @WebMethod(operationName = "SwapDayTotalXML", action = "http://web.cbr.ru/SwapDayTotalXML") + @WebResult(name = "SwapDayTotalXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapDayTotalXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDayTotalXML") + @ResponseWrapper(localName = "SwapDayTotalXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDayTotalXMLResponse") + public ru.cbr.web.SwapDayTotalXMLResponse.SwapDayTotalXMLResult swapDayTotalXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * buy/sell overnight (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapDynamicXMLResponse.SwapDynamicXMLResult + */ + @WebMethod(operationName = "SwapDynamicXML", action = "http://web.cbr.ru/SwapDynamicXML") + @WebResult(name = "SwapDynamicXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapDynamicXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDynamicXML") + @ResponseWrapper(localName = "SwapDynamicXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDynamicXMLResponse") + public ru.cbr.web.SwapDynamicXMLResponse.SwapDynamicXMLResult swapDynamicXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * , (XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult + */ + @WebMethod(operationName = "SwapInfoSellUSDVolXML", action = "http://web.cbr.ru/SwapInfoSellUSDVolXML") + @WebResult(name = "SwapInfoSellUSDVolXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapInfoSellUSDVolXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDVolXML") + @ResponseWrapper(localName = "SwapInfoSellUSDVolXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDVolXMLResponse") + public ru.cbr.web.SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult swapInfoSellUSDVolXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * , (DataSet) ver 21.11.2014 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult + */ + @WebMethod(operationName = "SwapInfoSellUSDVol", action = "http://web.cbr.ru/SwapInfoSellUSDVol") + @WebResult(name = "SwapInfoSellUSDVolResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapInfoSellUSDVol", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDVol") + @ResponseWrapper(localName = "SwapInfoSellUSDVolResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDVolResponse") + public ru.cbr.web.SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult swapInfoSellUSDVol( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 18.09.2014 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapInfoSellUSDResponse.SwapInfoSellUSDResult + */ + @WebMethod(operationName = "SwapInfoSellUSD", action = "http://web.cbr.ru/SwapInfoSellUSD") + @WebResult(name = "SwapInfoSellUSDResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapInfoSellUSD", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSD") + @ResponseWrapper(localName = "SwapInfoSellUSDResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDResponse") + public ru.cbr.web.SwapInfoSellUSDResponse.SwapInfoSellUSDResult swapInfoSellUSD( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult + */ + @WebMethod(operationName = "SwapInfoSellUSDXML", action = "http://web.cbr.ru/SwapInfoSellUSDXML") + @WebResult(name = "SwapInfoSellUSDXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapInfoSellUSDXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDXML") + @ResponseWrapper(localName = "SwapInfoSellUSDXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapInfoSellUSDXMLResponse") + public ru.cbr.web.SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult swapInfoSellUSDXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.BiCurBaseXMLResponse.BiCurBaseXMLResult + */ + @WebMethod(operationName = "BiCurBaseXML", action = "http://web.cbr.ru/BiCurBaseXML") + @WebResult(name = "BiCurBaseXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "BiCurBaseXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBaseXML") + @ResponseWrapper(localName = "BiCurBaseXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBaseXMLResponse") + public ru.cbr.web.BiCurBaseXMLResponse.BiCurBaseXMLResult biCurBaseXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 03.12.2014 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.BiCurBaseResponse.BiCurBaseResult + */ + @WebMethod(operationName = "BiCurBase", action = "http://web.cbr.ru/BiCurBase") + @WebResult(name = "BiCurBaseResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "BiCurBase", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBase") + @ResponseWrapper(localName = "BiCurBaseResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBaseResponse") + public ru.cbr.web.BiCurBaseResponse.BiCurBaseResult biCurBase( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @return + * returns ru.cbr.web.BiCurBacketXMLResponse.BiCurBacketXMLResult + */ + @WebMethod(operationName = "BiCurBacketXML", action = "http://web.cbr.ru/BiCurBacketXML") + @WebResult(name = "BiCurBacketXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "BiCurBacketXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBacketXML") + @ResponseWrapper(localName = "BiCurBacketXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBacketXMLResponse") + public ru.cbr.web.BiCurBacketXMLResponse.BiCurBacketXMLResult biCurBacketXML(); + + /** + * (DataSet) ver 03.12.2014 + * + * @return + * returns ru.cbr.web.BiCurBacketResponse.BiCurBacketResult + */ + @WebMethod(operationName = "BiCurBacket", action = "http://web.cbr.ru/BiCurBacket") + @WebResult(name = "BiCurBacketResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "BiCurBacket", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBacket") + @ResponseWrapper(localName = "BiCurBacketResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BiCurBacketResponse") + public ru.cbr.web.BiCurBacketResponse.BiCurBacketResult biCurBacket(); + + /** + * (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapDynamicResponse.SwapDynamicResult + */ + @WebMethod(operationName = "SwapDynamic", action = "http://web.cbr.ru/SwapDynamic") + @WebResult(name = "SwapDynamicResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapDynamic", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDynamic") + @ResponseWrapper(localName = "SwapDynamicResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapDynamicResponse") + public ru.cbr.web.SwapDynamicResponse.SwapDynamicResult swapDynamic( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ' ' (DataSet) ver 03.04.2014 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapMonthTotalResponse.SwapMonthTotalResult + */ + @WebMethod(operationName = "SwapMonthTotal", action = "http://web.cbr.ru/SwapMonthTotal") + @WebResult(name = "SwapMonthTotalResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapMonthTotal", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapMonthTotal") + @ResponseWrapper(localName = "SwapMonthTotalResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapMonthTotalResponse") + public ru.cbr.web.SwapMonthTotalResponse.SwapMonthTotalResult swapMonthTotal( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ' ' ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult + */ + @WebMethod(operationName = "SwapMonthTotalXML", action = "http://web.cbr.ru/SwapMonthTotalXML") + @WebResult(name = "SwapMonthTotalXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "SwapMonthTotalXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapMonthTotalXML") + @ResponseWrapper(localName = "SwapMonthTotalXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.SwapMonthTotalXMLResponse") + public ru.cbr.web.SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult swapMonthTotalXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.MKRResponse.MKRResult + */ + @WebMethod(operationName = "MKR", action = "http://web.cbr.ru/MKR") + @WebResult(name = "MKRResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "MKR", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MKR") + @ResponseWrapper(localName = "MKRResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MKRResponse") + public ru.cbr.web.MKRResponse.MKRResult mkr( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.MKRXMLResponse.MKRXMLResult + */ + @WebMethod(operationName = "MKRXML", action = "http://web.cbr.ru/MKRXML") + @WebResult(name = "MKRXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "MKRXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MKRXML") + @ResponseWrapper(localName = "MKRXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.MKRXMLResponse") + public ru.cbr.web.MKRXMLResponse.MKRXMLResult mkrxml( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.DVResponse.DVResult + */ + @WebMethod(operationName = "DV", action = "http://web.cbr.ru/DV") + @WebResult(name = "DVResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "DV", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DV") + @ResponseWrapper(localName = "DVResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DVResponse") + public ru.cbr.web.DVResponse.DVResult dv( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.DVXMLResponse.DVXMLResult + */ + @WebMethod(operationName = "DVXML", action = "http://web.cbr.ru/DVXML") + @WebResult(name = "DVXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "DVXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DVXML") + @ResponseWrapper(localName = "DVXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DVXMLResponse") + public ru.cbr.web.DVXMLResponse.DVXMLResult dvxml( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 18.06.2014 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.RepoDebtResponse.RepoDebtResult + */ + @WebMethod(operationName = "Repo_debt", action = "http://web.cbr.ru/Repo_debt") + @WebResult(name = "Repo_debtResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Repo_debt", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebt") + @ResponseWrapper(localName = "Repo_debtResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtResponse") + public ru.cbr.web.RepoDebtResponse.RepoDebtResult repoDebt( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.RepoDebtXMLResponse.RepoDebtXMLResult + */ + @WebMethod(operationName = "Repo_debtXML", action = "http://web.cbr.ru/Repo_debtXML") + @WebResult(name = "Repo_debtXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Repo_debtXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtXML") + @ResponseWrapper(localName = "Repo_debtXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.RepoDebtXMLResponse") + public ru.cbr.web.RepoDebtXMLResponse.RepoDebtXMLResult repoDebtXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.CoinsBaseResponse.CoinsBaseResult + */ + @WebMethod(operationName = "Coins_base", action = "http://web.cbr.ru/Coins_base") + @WebResult(name = "Coins_baseResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Coins_base", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.CoinsBase") + @ResponseWrapper(localName = "Coins_baseResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.CoinsBaseResponse") + public ru.cbr.web.CoinsBaseResponse.CoinsBaseResult coinsBase( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.CoinsBaseXMLResponse.CoinsBaseXMLResult + */ + @WebMethod(operationName = "Coins_baseXML", action = "http://web.cbr.ru/Coins_baseXML") + @WebResult(name = "Coins_baseXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Coins_baseXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.CoinsBaseXML") + @ResponseWrapper(localName = "Coins_baseXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.CoinsBaseXMLResponse") + public ru.cbr.web.CoinsBaseXMLResponse.CoinsBaseXMLResult coinsBaseXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.FixingBaseResponse.FixingBaseResult + */ + @WebMethod(operationName = "FixingBase", action = "http://web.cbr.ru/FixingBase") + @WebResult(name = "FixingBaseResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "FixingBase", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.FixingBase") + @ResponseWrapper(localName = "FixingBaseResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.FixingBaseResponse") + public ru.cbr.web.FixingBaseResponse.FixingBaseResult fixingBase( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.FixingBaseXMLResponse.FixingBaseXMLResult + */ + @WebMethod(operationName = "FixingBaseXML", action = "http://web.cbr.ru/FixingBaseXML") + @WebResult(name = "FixingBaseXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "FixingBaseXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.FixingBaseXML") + @ResponseWrapper(localName = "FixingBaseXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.FixingBaseXMLResponse") + public ru.cbr.web.FixingBaseXMLResponse.FixingBaseXMLResult fixingBaseXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * 'overnight' (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.OvernightResponse.OvernightResult + */ + @WebMethod(operationName = "Overnight", action = "http://web.cbr.ru/Overnight") + @WebResult(name = "OvernightResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Overnight", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Overnight") + @ResponseWrapper(localName = "OvernightResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OvernightResponse") + public ru.cbr.web.OvernightResponse.OvernightResult overnight( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * 'overnight' ( xmlDocument + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.OvernightXMLResponse.OvernightXMLResult + */ + @WebMethod(operationName = "OvernightXML", action = "http://web.cbr.ru/OvernightXML") + @WebResult(name = "OvernightXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "OvernightXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OvernightXML") + @ResponseWrapper(localName = "OvernightXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OvernightXMLResponse") + public ru.cbr.web.OvernightXMLResponse.OvernightXMLResult overnightXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) ver 31.07.2012 + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.BauctionResponse.BauctionResult + */ + @WebMethod(operationName = "Bauction", action = "http://web.cbr.ru/Bauction") + @WebResult(name = "BauctionResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "Bauction", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.Bauction") + @ResponseWrapper(localName = "BauctionResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BauctionResponse") + public ru.cbr.web.BauctionResponse.BauctionResult bauction( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.BauctionXMLResponse.BauctionXMLResult + */ + @WebMethod(operationName = "BauctionXML", action = "http://web.cbr.ru/BauctionXML") + @WebResult(name = "BauctionXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "BauctionXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BauctionXML") + @ResponseWrapper(localName = "BauctionXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.BauctionXMLResponse") + public ru.cbr.web.BauctionXMLResponse.BauctionXMLResult bauctionXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( xmlDocument + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.DepoDynamicXMLResponse.DepoDynamicXMLResult + */ + @WebMethod(operationName = "DepoDynamicXML", action = "http://web.cbr.ru/DepoDynamicXML") + @WebResult(name = "DepoDynamicXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "DepoDynamicXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DepoDynamicXML") + @ResponseWrapper(localName = "DepoDynamicXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DepoDynamicXMLResponse") + public ru.cbr.web.DepoDynamicXMLResponse.DepoDynamicXMLResult depoDynamicXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.DepoDynamicResponse.DepoDynamicResult + */ + @WebMethod(operationName = "DepoDynamic", action = "http://web.cbr.ru/DepoDynamic") + @WebResult(name = "DepoDynamicResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "DepoDynamic", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DepoDynamic") + @ResponseWrapper(localName = "DepoDynamicResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DepoDynamicResponse") + public ru.cbr.web.DepoDynamicResponse.DepoDynamicResult depoDynamic( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (XMLDocument). + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.OstatDynamicXMLResponse.OstatDynamicXMLResult + */ + @WebMethod(operationName = "OstatDynamicXML", action = "http://web.cbr.ru/OstatDynamicXML") + @WebResult(name = "OstatDynamicXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "OstatDynamicXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDynamicXML") + @ResponseWrapper(localName = "OstatDynamicXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDynamicXMLResponse") + public ru.cbr.web.OstatDynamicXMLResponse.OstatDynamicXMLResult ostatDynamicXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet)! + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.OstatDynamicResponse.OstatDynamicResult + */ + @WebMethod(operationName = "OstatDynamic", action = "http://web.cbr.ru/OstatDynamic") + @WebResult(name = "OstatDynamicResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "OstatDynamic", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDynamic") + @ResponseWrapper(localName = "OstatDynamicResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.OstatDynamicResponse") + public ru.cbr.web.OstatDynamicResponse.OstatDynamicResult ostatDynamic( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * ( XMLDocument) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.DragMetDynamicXMLResponse.DragMetDynamicXMLResult + */ + @WebMethod(operationName = "DragMetDynamicXML", action = "http://web.cbr.ru/DragMetDynamicXML") + @WebResult(name = "DragMetDynamicXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "DragMetDynamicXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DragMetDynamicXML") + @ResponseWrapper(localName = "DragMetDynamicXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DragMetDynamicXMLResponse") + public ru.cbr.web.DragMetDynamicXMLResponse.DragMetDynamicXMLResult dragMetDynamicXML( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * (DataSet) + * + * @param fromDate + * @param toDate + * @return + * returns ru.cbr.web.DragMetDynamicResponse.DragMetDynamicResult + */ + @WebMethod(operationName = "DragMetDynamic", action = "http://web.cbr.ru/DragMetDynamic") + @WebResult(name = "DragMetDynamicResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "DragMetDynamic", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DragMetDynamic") + @ResponseWrapper(localName = "DragMetDynamicResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.DragMetDynamicResponse") + public ru.cbr.web.DragMetDynamicResponse.DragMetDynamicResult dragMetDynamic( + @WebParam(name = "fromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate); + + /** + * DateTime ( ) + * + * @return + * returns javax.xml.datatype.XMLGregorianCalendar + */ + @WebMethod(operationName = "GetLatestDateTime", action = "http://web.cbr.ru/GetLatestDateTime") + @WebResult(name = "GetLatestDateTimeResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetLatestDateTime", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateTime") + @ResponseWrapper(localName = "GetLatestDateTimeResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateTimeResponse") + public XMLGregorianCalendar getLatestDateTime(); + + /** + * ( ) - + * + * @return + * returns java.lang.String + */ + @WebMethod(operationName = "GetLatestDate", action = "http://web.cbr.ru/GetLatestDate") + @WebResult(name = "GetLatestDateResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetLatestDate", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDate") + @ResponseWrapper(localName = "GetLatestDateResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateResponse") + public String getLatestDate(); + + /** + * DateTime ( ) + * + * @return + * returns javax.xml.datatype.XMLGregorianCalendar + */ + @WebMethod(operationName = "GetLatestDateTimeSeld", action = "http://web.cbr.ru/GetLatestDateTimeSeld") + @WebResult(name = "GetLatestDateTimeSeldResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetLatestDateTimeSeld", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateTimeSeld") + @ResponseWrapper(localName = "GetLatestDateTimeSeldResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateTimeSeldResponse") + public XMLGregorianCalendar getLatestDateTimeSeld(); + + /** + * ( ) - yyyyMMdd + * + * @return + * returns java.lang.String + */ + @WebMethod(operationName = "GetLatestDateSeld", action = "http://web.cbr.ru/GetLatestDateSeld") + @WebResult(name = "GetLatestDateSeldResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetLatestDateSeld", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateSeld") + @ResponseWrapper(localName = "GetLatestDateSeldResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestDateSeldResponse") + public String getLatestDateSeld(); + + /** + * ( XMLDocument) + * + * @param seld + * @return + * returns ru.cbr.web.EnumValutesXMLResponse.EnumValutesXMLResult + */ + @WebMethod(operationName = "EnumValutesXML", action = "http://web.cbr.ru/EnumValutesXML") + @WebResult(name = "EnumValutesXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "EnumValutesXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumValutesXML") + @ResponseWrapper(localName = "EnumValutesXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumValutesXMLResponse") + public ru.cbr.web.EnumValutesXMLResponse.EnumValutesXMLResult enumValutesXML( + @WebParam(name = "Seld", targetNamespace = "http://web.cbr.ru/") + boolean seld); + + /** + * ( DataSet) + * + * @param seld + * @return + * returns ru.cbr.web.EnumValutesResponse.EnumValutesResult + */ + @WebMethod(operationName = "EnumValutes", action = "http://web.cbr.ru/EnumValutes") + @WebResult(name = "EnumValutesResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "EnumValutes", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumValutes") + @ResponseWrapper(localName = "EnumValutesResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumValutesResponse") + public ru.cbr.web.EnumValutesResponse.EnumValutesResult enumValutes( + @WebParam(name = "Seld", targetNamespace = "http://web.cbr.ru/") + boolean seld); + + /** + * Thomson Reuters DateTime ( ) + * + * @return + * returns javax.xml.datatype.XMLGregorianCalendar + */ + @WebMethod(operationName = "GetLatestReutersDateTime", action = "http://web.cbr.ru/GetLatestReutersDateTime") + @WebResult(name = "GetLatestReutersDateTimeResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetLatestReutersDateTime", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestReutersDateTime") + @ResponseWrapper(localName = "GetLatestReutersDateTimeResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetLatestReutersDateTimeResponse") + public XMLGregorianCalendar getLatestReutersDateTime(); + + /** + * Thomson Reuters ( XMLDocument) + * + * @return + * returns ru.cbr.web.EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult + */ + @WebMethod(operationName = "EnumReutersValutesXML", action = "http://web.cbr.ru/EnumReutersValutesXML") + @WebResult(name = "EnumReutersValutesXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "EnumReutersValutesXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumReutersValutesXML") + @ResponseWrapper(localName = "EnumReutersValutesXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumReutersValutesXMLResponse") + public ru.cbr.web.EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult enumReutersValutesXML(); + + /** + * Thomson Reuters ( DataSet) + * + * @return + * returns ru.cbr.web.EnumReutersValutesResponse.EnumReutersValutesResult + */ + @WebMethod(operationName = "EnumReutersValutes", action = "http://web.cbr.ru/EnumReutersValutes") + @WebResult(name = "EnumReutersValutesResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "EnumReutersValutes", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumReutersValutes") + @ResponseWrapper(localName = "EnumReutersValutesResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.EnumReutersValutesResponse") + public ru.cbr.web.EnumReutersValutesResponse.EnumReutersValutesResult enumReutersValutes(); + + /** + * Thomson Reuters ( XMLDocument) + * + * @param onDate + * @return + * returns ru.cbr.web.GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult + */ + @WebMethod(operationName = "GetReutersCursOnDateXML", action = "http://web.cbr.ru/GetReutersCursOnDateXML") + @WebResult(name = "GetReutersCursOnDateXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetReutersCursOnDateXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursOnDateXML") + @ResponseWrapper(localName = "GetReutersCursOnDateXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursOnDateXMLResponse") + public ru.cbr.web.GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult getReutersCursOnDateXML( + @WebParam(name = "On_date", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar onDate); + + /** + * Thomson Reuters ( DataSet) + * + * @param onDate + * @return + * returns ru.cbr.web.GetReutersCursOnDateResponse.GetReutersCursOnDateResult + */ + @WebMethod(operationName = "GetReutersCursOnDate", action = "http://web.cbr.ru/GetReutersCursOnDate") + @WebResult(name = "GetReutersCursOnDateResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetReutersCursOnDate", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursOnDate") + @ResponseWrapper(localName = "GetReutersCursOnDateResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursOnDateResponse") + public ru.cbr.web.GetReutersCursOnDateResponse.GetReutersCursOnDateResult getReutersCursOnDate( + @WebParam(name = "On_date", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar onDate); + + /** + * Thomson Reuters ( XMLDocument) + * + * @param fromDate + * @param toDate + * @param numCode + * @return + * returns ru.cbr.web.GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult + */ + @WebMethod(operationName = "GetReutersCursDynamicXML", action = "http://web.cbr.ru/GetReutersCursDynamicXML") + @WebResult(name = "GetReutersCursDynamicXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetReutersCursDynamicXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursDynamicXML") + @ResponseWrapper(localName = "GetReutersCursDynamicXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursDynamicXMLResponse") + public ru.cbr.web.GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult getReutersCursDynamicXML( + @WebParam(name = "FromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate, + @WebParam(name = "NumCode", targetNamespace = "http://web.cbr.ru/") + int numCode); + + /** + * Thomson Reuters ( DataSet) + * + * @param fromDate + * @param toDate + * @param numCode + * @return + * returns ru.cbr.web.GetReutersCursDynamicResponse.GetReutersCursDynamicResult + */ + @WebMethod(operationName = "GetReutersCursDynamic", action = "http://web.cbr.ru/GetReutersCursDynamic") + @WebResult(name = "GetReutersCursDynamicResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetReutersCursDynamic", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursDynamic") + @ResponseWrapper(localName = "GetReutersCursDynamicResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetReutersCursDynamicResponse") + public ru.cbr.web.GetReutersCursDynamicResponse.GetReutersCursDynamicResult getReutersCursDynamic( + @WebParam(name = "FromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate, + @WebParam(name = "NumCode", targetNamespace = "http://web.cbr.ru/") + int numCode); + + /** + * ( XMLDocument) + * + * @param fromDate + * @param toDate + * @param valutaCode + * @return + * returns ru.cbr.web.GetCursDynamicXMLResponse.GetCursDynamicXMLResult + */ + @WebMethod(operationName = "GetCursDynamicXML", action = "http://web.cbr.ru/GetCursDynamicXML") + @WebResult(name = "GetCursDynamicXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetCursDynamicXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursDynamicXML") + @ResponseWrapper(localName = "GetCursDynamicXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursDynamicXMLResponse") + public ru.cbr.web.GetCursDynamicXMLResponse.GetCursDynamicXMLResult getCursDynamicXML( + @WebParam(name = "FromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate, + @WebParam(name = "ValutaCode", targetNamespace = "http://web.cbr.ru/") + String valutaCode); + + /** + * ( DataSet) + * + * @param fromDate + * @param toDate + * @param valutaCode + * @return + * returns ru.cbr.web.GetCursDynamicResponse.GetCursDynamicResult + */ + @WebMethod(operationName = "GetCursDynamic", action = "http://web.cbr.ru/GetCursDynamic") + @WebResult(name = "GetCursDynamicResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetCursDynamic", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursDynamic") + @ResponseWrapper(localName = "GetCursDynamicResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursDynamicResponse") + public ru.cbr.web.GetCursDynamicResponse.GetCursDynamicResult getCursDynamic( + @WebParam(name = "FromDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar fromDate, + @WebParam(name = "ToDate", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar toDate, + @WebParam(name = "ValutaCode", targetNamespace = "http://web.cbr.ru/") + String valutaCode); + + /** + * ( XMLDocument) + * + * @param onDate + * @return + * returns ru.cbr.web.GetCursOnDateXMLResponse.GetCursOnDateXMLResult + */ + @WebMethod(operationName = "GetCursOnDateXML", action = "http://web.cbr.ru/GetCursOnDateXML") + @WebResult(name = "GetCursOnDateXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetCursOnDateXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursOnDateXML") + @ResponseWrapper(localName = "GetCursOnDateXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursOnDateXMLResponse") + public ru.cbr.web.GetCursOnDateXMLResponse.GetCursOnDateXMLResult getCursOnDateXML( + @WebParam(name = "On_date", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar onDate); + + /** + * !*! ( XMLDocument) + * + * @param onDate + * @return + * returns ru.cbr.web.GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult + */ + @WebMethod(operationName = "GetSeldCursOnDateXML", action = "http://web.cbr.ru/GetSeldCursOnDateXML") + @WebResult(name = "GetSeldCursOnDateXMLResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetSeldCursOnDateXML", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetSeldCursOnDateXML") + @ResponseWrapper(localName = "GetSeldCursOnDateXMLResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetSeldCursOnDateXMLResponse") + public ru.cbr.web.GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult getSeldCursOnDateXML( + @WebParam(name = "On_date", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar onDate); + + /** + * !*! ( DataSet) + * + * @param onDate + * @return + * returns ru.cbr.web.GetSeldCursOnDateResponse.GetSeldCursOnDateResult + */ + @WebMethod(operationName = "GetSeldCursOnDate", action = "http://web.cbr.ru/GetSeldCursOnDate") + @WebResult(name = "GetSeldCursOnDateResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetSeldCursOnDate", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetSeldCursOnDate") + @ResponseWrapper(localName = "GetSeldCursOnDateResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetSeldCursOnDateResponse") + public ru.cbr.web.GetSeldCursOnDateResponse.GetSeldCursOnDateResult getSeldCursOnDate( + @WebParam(name = "On_date", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar onDate); + + /** + * ( DataSet) + * + * @param onDate + * @return + * returns ru.cbr.web.GetCursOnDateResponse.GetCursOnDateResult + */ + @WebMethod(operationName = "GetCursOnDate", action = "http://web.cbr.ru/GetCursOnDate") + @WebResult(name = "GetCursOnDateResult", targetNamespace = "http://web.cbr.ru/") + @RequestWrapper(localName = "GetCursOnDate", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursOnDate") + @ResponseWrapper(localName = "GetCursOnDateResponse", targetNamespace = "http://web.cbr.ru/", className = "ru.cbr.web.GetCursOnDateResponse") + public ru.cbr.web.GetCursOnDateResponse.GetCursOnDateResult getCursOnDate( + @WebParam(name = "On_date", targetNamespace = "http://web.cbr.ru/") + XMLGregorianCalendar onDate); + +} diff --git a/src/main/java/ru/cbr/web/DepoDynamic.java b/src/main/java/ru/cbr/web/DepoDynamic.java new file mode 100644 index 0000000..985d37e --- /dev/null +++ b/src/main/java/ru/cbr/web/DepoDynamic.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "DepoDynamic") +public class DepoDynamic { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/DepoDynamicResponse.java b/src/main/java/ru/cbr/web/DepoDynamicResponse.java new file mode 100644 index 0000000..1754948 --- /dev/null +++ b/src/main/java/ru/cbr/web/DepoDynamicResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DepoDynamicResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "depoDynamicResult" +}) +@XmlRootElement(name = "DepoDynamicResponse") +public class DepoDynamicResponse { + + @XmlElement(name = "DepoDynamicResult") + protected DepoDynamicResponse.DepoDynamicResult depoDynamicResult; + + /** + * Gets the value of the depoDynamicResult property. + * + * @return + * possible object is + * {@link DepoDynamicResponse.DepoDynamicResult } + * + */ + public DepoDynamicResponse.DepoDynamicResult getDepoDynamicResult() { + return depoDynamicResult; + } + + /** + * Sets the value of the depoDynamicResult property. + * + * @param value + * allowed object is + * {@link DepoDynamicResponse.DepoDynamicResult } + * + */ + public void setDepoDynamicResult(DepoDynamicResponse.DepoDynamicResult value) { + this.depoDynamicResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class DepoDynamicResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/DepoDynamicXML.java b/src/main/java/ru/cbr/web/DepoDynamicXML.java new file mode 100644 index 0000000..9a16e7c --- /dev/null +++ b/src/main/java/ru/cbr/web/DepoDynamicXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "DepoDynamicXML") +public class DepoDynamicXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/DepoDynamicXMLResponse.java b/src/main/java/ru/cbr/web/DepoDynamicXMLResponse.java new file mode 100644 index 0000000..8c855cb --- /dev/null +++ b/src/main/java/ru/cbr/web/DepoDynamicXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DepoDynamicXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "depoDynamicXMLResult" +}) +@XmlRootElement(name = "DepoDynamicXMLResponse") +public class DepoDynamicXMLResponse { + + @XmlElement(name = "DepoDynamicXMLResult") + protected DepoDynamicXMLResponse.DepoDynamicXMLResult depoDynamicXMLResult; + + /** + * Gets the value of the depoDynamicXMLResult property. + * + * @return + * possible object is + * {@link DepoDynamicXMLResponse.DepoDynamicXMLResult } + * + */ + public DepoDynamicXMLResponse.DepoDynamicXMLResult getDepoDynamicXMLResult() { + return depoDynamicXMLResult; + } + + /** + * Sets the value of the depoDynamicXMLResult property. + * + * @param value + * allowed object is + * {@link DepoDynamicXMLResponse.DepoDynamicXMLResult } + * + */ + public void setDepoDynamicXMLResult(DepoDynamicXMLResponse.DepoDynamicXMLResult value) { + this.depoDynamicXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class DepoDynamicXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/DragMetDynamic.java b/src/main/java/ru/cbr/web/DragMetDynamic.java new file mode 100644 index 0000000..053af32 --- /dev/null +++ b/src/main/java/ru/cbr/web/DragMetDynamic.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "DragMetDynamic") +public class DragMetDynamic { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/DragMetDynamicResponse.java b/src/main/java/ru/cbr/web/DragMetDynamicResponse.java new file mode 100644 index 0000000..bba6af2 --- /dev/null +++ b/src/main/java/ru/cbr/web/DragMetDynamicResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DragMetDynamicResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "dragMetDynamicResult" +}) +@XmlRootElement(name = "DragMetDynamicResponse") +public class DragMetDynamicResponse { + + @XmlElement(name = "DragMetDynamicResult") + protected DragMetDynamicResponse.DragMetDynamicResult dragMetDynamicResult; + + /** + * Gets the value of the dragMetDynamicResult property. + * + * @return + * possible object is + * {@link DragMetDynamicResponse.DragMetDynamicResult } + * + */ + public DragMetDynamicResponse.DragMetDynamicResult getDragMetDynamicResult() { + return dragMetDynamicResult; + } + + /** + * Sets the value of the dragMetDynamicResult property. + * + * @param value + * allowed object is + * {@link DragMetDynamicResponse.DragMetDynamicResult } + * + */ + public void setDragMetDynamicResult(DragMetDynamicResponse.DragMetDynamicResult value) { + this.dragMetDynamicResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class DragMetDynamicResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/DragMetDynamicXML.java b/src/main/java/ru/cbr/web/DragMetDynamicXML.java new file mode 100644 index 0000000..30255a0 --- /dev/null +++ b/src/main/java/ru/cbr/web/DragMetDynamicXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "DragMetDynamicXML") +public class DragMetDynamicXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/DragMetDynamicXMLResponse.java b/src/main/java/ru/cbr/web/DragMetDynamicXMLResponse.java new file mode 100644 index 0000000..08cc3fb --- /dev/null +++ b/src/main/java/ru/cbr/web/DragMetDynamicXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DragMetDynamicXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "dragMetDynamicXMLResult" +}) +@XmlRootElement(name = "DragMetDynamicXMLResponse") +public class DragMetDynamicXMLResponse { + + @XmlElement(name = "DragMetDynamicXMLResult") + protected DragMetDynamicXMLResponse.DragMetDynamicXMLResult dragMetDynamicXMLResult; + + /** + * Gets the value of the dragMetDynamicXMLResult property. + * + * @return + * possible object is + * {@link DragMetDynamicXMLResponse.DragMetDynamicXMLResult } + * + */ + public DragMetDynamicXMLResponse.DragMetDynamicXMLResult getDragMetDynamicXMLResult() { + return dragMetDynamicXMLResult; + } + + /** + * Sets the value of the dragMetDynamicXMLResult property. + * + * @param value + * allowed object is + * {@link DragMetDynamicXMLResponse.DragMetDynamicXMLResult } + * + */ + public void setDragMetDynamicXMLResult(DragMetDynamicXMLResponse.DragMetDynamicXMLResult value) { + this.dragMetDynamicXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class DragMetDynamicXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/EnumReutersValutes.java b/src/main/java/ru/cbr/web/EnumReutersValutes.java new file mode 100644 index 0000000..2d5011d --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumReutersValutes.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "EnumReutersValutes") +public class EnumReutersValutes { + + +} diff --git a/src/main/java/ru/cbr/web/EnumReutersValutesResponse.java b/src/main/java/ru/cbr/web/EnumReutersValutesResponse.java new file mode 100644 index 0000000..afd6e9a --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumReutersValutesResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="EnumReutersValutesResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "enumReutersValutesResult" +}) +@XmlRootElement(name = "EnumReutersValutesResponse") +public class EnumReutersValutesResponse { + + @XmlElement(name = "EnumReutersValutesResult") + protected EnumReutersValutesResponse.EnumReutersValutesResult enumReutersValutesResult; + + /** + * Gets the value of the enumReutersValutesResult property. + * + * @return + * possible object is + * {@link EnumReutersValutesResponse.EnumReutersValutesResult } + * + */ + public EnumReutersValutesResponse.EnumReutersValutesResult getEnumReutersValutesResult() { + return enumReutersValutesResult; + } + + /** + * Sets the value of the enumReutersValutesResult property. + * + * @param value + * allowed object is + * {@link EnumReutersValutesResponse.EnumReutersValutesResult } + * + */ + public void setEnumReutersValutesResult(EnumReutersValutesResponse.EnumReutersValutesResult value) { + this.enumReutersValutesResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class EnumReutersValutesResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/EnumReutersValutesXML.java b/src/main/java/ru/cbr/web/EnumReutersValutesXML.java new file mode 100644 index 0000000..0e93e26 --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumReutersValutesXML.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "EnumReutersValutesXML") +public class EnumReutersValutesXML { + + +} diff --git a/src/main/java/ru/cbr/web/EnumReutersValutesXMLResponse.java b/src/main/java/ru/cbr/web/EnumReutersValutesXMLResponse.java new file mode 100644 index 0000000..cceabe9 --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumReutersValutesXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="EnumReutersValutesXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "enumReutersValutesXMLResult" +}) +@XmlRootElement(name = "EnumReutersValutesXMLResponse") +public class EnumReutersValutesXMLResponse { + + @XmlElement(name = "EnumReutersValutesXMLResult") + protected EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult enumReutersValutesXMLResult; + + /** + * Gets the value of the enumReutersValutesXMLResult property. + * + * @return + * possible object is + * {@link EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult } + * + */ + public EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult getEnumReutersValutesXMLResult() { + return enumReutersValutesXMLResult; + } + + /** + * Sets the value of the enumReutersValutesXMLResult property. + * + * @param value + * allowed object is + * {@link EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult } + * + */ + public void setEnumReutersValutesXMLResult(EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult value) { + this.enumReutersValutesXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class EnumReutersValutesXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/EnumValutes.java b/src/main/java/ru/cbr/web/EnumValutes.java new file mode 100644 index 0000000..6d1fbb5 --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumValutes.java @@ -0,0 +1,56 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Seld" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "seld" +}) +@XmlRootElement(name = "EnumValutes") +public class EnumValutes { + + @XmlElement(name = "Seld") + protected boolean seld; + + /** + * Gets the value of the seld property. + * + */ + public boolean isSeld() { + return seld; + } + + /** + * Sets the value of the seld property. + * + */ + public void setSeld(boolean value) { + this.seld = value; + } + +} diff --git a/src/main/java/ru/cbr/web/EnumValutesResponse.java b/src/main/java/ru/cbr/web/EnumValutesResponse.java new file mode 100644 index 0000000..95b68c6 --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumValutesResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="EnumValutesResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "enumValutesResult" +}) +@XmlRootElement(name = "EnumValutesResponse") +public class EnumValutesResponse { + + @XmlElement(name = "EnumValutesResult") + protected EnumValutesResponse.EnumValutesResult enumValutesResult; + + /** + * Gets the value of the enumValutesResult property. + * + * @return + * possible object is + * {@link EnumValutesResponse.EnumValutesResult } + * + */ + public EnumValutesResponse.EnumValutesResult getEnumValutesResult() { + return enumValutesResult; + } + + /** + * Sets the value of the enumValutesResult property. + * + * @param value + * allowed object is + * {@link EnumValutesResponse.EnumValutesResult } + * + */ + public void setEnumValutesResult(EnumValutesResponse.EnumValutesResult value) { + this.enumValutesResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class EnumValutesResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/EnumValutesXML.java b/src/main/java/ru/cbr/web/EnumValutesXML.java new file mode 100644 index 0000000..0b9413a --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumValutesXML.java @@ -0,0 +1,56 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Seld" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "seld" +}) +@XmlRootElement(name = "EnumValutesXML") +public class EnumValutesXML { + + @XmlElement(name = "Seld") + protected boolean seld; + + /** + * Gets the value of the seld property. + * + */ + public boolean isSeld() { + return seld; + } + + /** + * Sets the value of the seld property. + * + */ + public void setSeld(boolean value) { + this.seld = value; + } + +} diff --git a/src/main/java/ru/cbr/web/EnumValutesXMLResponse.java b/src/main/java/ru/cbr/web/EnumValutesXMLResponse.java new file mode 100644 index 0000000..9354d7c --- /dev/null +++ b/src/main/java/ru/cbr/web/EnumValutesXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="EnumValutesXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "enumValutesXMLResult" +}) +@XmlRootElement(name = "EnumValutesXMLResponse") +public class EnumValutesXMLResponse { + + @XmlElement(name = "EnumValutesXMLResult") + protected EnumValutesXMLResponse.EnumValutesXMLResult enumValutesXMLResult; + + /** + * Gets the value of the enumValutesXMLResult property. + * + * @return + * possible object is + * {@link EnumValutesXMLResponse.EnumValutesXMLResult } + * + */ + public EnumValutesXMLResponse.EnumValutesXMLResult getEnumValutesXMLResult() { + return enumValutesXMLResult; + } + + /** + * Sets the value of the enumValutesXMLResult property. + * + * @param value + * allowed object is + * {@link EnumValutesXMLResponse.EnumValutesXMLResult } + * + */ + public void setEnumValutesXMLResult(EnumValutesXMLResponse.EnumValutesXMLResult value) { + this.enumValutesXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class EnumValutesXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/FixingBase.java b/src/main/java/ru/cbr/web/FixingBase.java new file mode 100644 index 0000000..b66725a --- /dev/null +++ b/src/main/java/ru/cbr/web/FixingBase.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "FixingBase") +public class FixingBase { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/FixingBaseResponse.java b/src/main/java/ru/cbr/web/FixingBaseResponse.java new file mode 100644 index 0000000..027dca3 --- /dev/null +++ b/src/main/java/ru/cbr/web/FixingBaseResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FixingBaseResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fixingBaseResult" +}) +@XmlRootElement(name = "FixingBaseResponse") +public class FixingBaseResponse { + + @XmlElement(name = "FixingBaseResult") + protected FixingBaseResponse.FixingBaseResult fixingBaseResult; + + /** + * Gets the value of the fixingBaseResult property. + * + * @return + * possible object is + * {@link FixingBaseResponse.FixingBaseResult } + * + */ + public FixingBaseResponse.FixingBaseResult getFixingBaseResult() { + return fixingBaseResult; + } + + /** + * Sets the value of the fixingBaseResult property. + * + * @param value + * allowed object is + * {@link FixingBaseResponse.FixingBaseResult } + * + */ + public void setFixingBaseResult(FixingBaseResponse.FixingBaseResult value) { + this.fixingBaseResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class FixingBaseResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/FixingBaseXML.java b/src/main/java/ru/cbr/web/FixingBaseXML.java new file mode 100644 index 0000000..7591eec --- /dev/null +++ b/src/main/java/ru/cbr/web/FixingBaseXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "FixingBaseXML") +public class FixingBaseXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/FixingBaseXMLResponse.java b/src/main/java/ru/cbr/web/FixingBaseXMLResponse.java new file mode 100644 index 0000000..a498ba0 --- /dev/null +++ b/src/main/java/ru/cbr/web/FixingBaseXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FixingBaseXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fixingBaseXMLResult" +}) +@XmlRootElement(name = "FixingBaseXMLResponse") +public class FixingBaseXMLResponse { + + @XmlElement(name = "FixingBaseXMLResult") + protected FixingBaseXMLResponse.FixingBaseXMLResult fixingBaseXMLResult; + + /** + * Gets the value of the fixingBaseXMLResult property. + * + * @return + * possible object is + * {@link FixingBaseXMLResponse.FixingBaseXMLResult } + * + */ + public FixingBaseXMLResponse.FixingBaseXMLResult getFixingBaseXMLResult() { + return fixingBaseXMLResult; + } + + /** + * Sets the value of the fixingBaseXMLResult property. + * + * @param value + * allowed object is + * {@link FixingBaseXMLResponse.FixingBaseXMLResult } + * + */ + public void setFixingBaseXMLResult(FixingBaseXMLResponse.FixingBaseXMLResult value) { + this.fixingBaseXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class FixingBaseXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursDynamic.java b/src/main/java/ru/cbr/web/GetCursDynamic.java new file mode 100644 index 0000000..92052f4 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursDynamic.java @@ -0,0 +1,124 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ValutaCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate", + "valutaCode" +}) +@XmlRootElement(name = "GetCursDynamic") +public class GetCursDynamic { + + @XmlElement(name = "FromDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + @XmlElement(name = "ValutaCode") + protected String valutaCode; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + + /** + * Gets the value of the valutaCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValutaCode() { + return valutaCode; + } + + /** + * Sets the value of the valutaCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValutaCode(String value) { + this.valutaCode = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursDynamicResponse.java b/src/main/java/ru/cbr/web/GetCursDynamicResponse.java new file mode 100644 index 0000000..1ff7eba --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursDynamicResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetCursDynamicResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getCursDynamicResult" +}) +@XmlRootElement(name = "GetCursDynamicResponse") +public class GetCursDynamicResponse { + + @XmlElement(name = "GetCursDynamicResult") + protected GetCursDynamicResponse.GetCursDynamicResult getCursDynamicResult; + + /** + * Gets the value of the getCursDynamicResult property. + * + * @return + * possible object is + * {@link GetCursDynamicResponse.GetCursDynamicResult } + * + */ + public GetCursDynamicResponse.GetCursDynamicResult getGetCursDynamicResult() { + return getCursDynamicResult; + } + + /** + * Sets the value of the getCursDynamicResult property. + * + * @param value + * allowed object is + * {@link GetCursDynamicResponse.GetCursDynamicResult } + * + */ + public void setGetCursDynamicResult(GetCursDynamicResponse.GetCursDynamicResult value) { + this.getCursDynamicResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class GetCursDynamicResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursDynamicXML.java b/src/main/java/ru/cbr/web/GetCursDynamicXML.java new file mode 100644 index 0000000..fe010f3 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursDynamicXML.java @@ -0,0 +1,124 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ValutaCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate", + "valutaCode" +}) +@XmlRootElement(name = "GetCursDynamicXML") +public class GetCursDynamicXML { + + @XmlElement(name = "FromDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + @XmlElement(name = "ValutaCode") + protected String valutaCode; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + + /** + * Gets the value of the valutaCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValutaCode() { + return valutaCode; + } + + /** + * Sets the value of the valutaCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValutaCode(String value) { + this.valutaCode = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursDynamicXMLResponse.java b/src/main/java/ru/cbr/web/GetCursDynamicXMLResponse.java new file mode 100644 index 0000000..ed881fb --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursDynamicXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetCursDynamicXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getCursDynamicXMLResult" +}) +@XmlRootElement(name = "GetCursDynamicXMLResponse") +public class GetCursDynamicXMLResponse { + + @XmlElement(name = "GetCursDynamicXMLResult") + protected GetCursDynamicXMLResponse.GetCursDynamicXMLResult getCursDynamicXMLResult; + + /** + * Gets the value of the getCursDynamicXMLResult property. + * + * @return + * possible object is + * {@link GetCursDynamicXMLResponse.GetCursDynamicXMLResult } + * + */ + public GetCursDynamicXMLResponse.GetCursDynamicXMLResult getGetCursDynamicXMLResult() { + return getCursDynamicXMLResult; + } + + /** + * Sets the value of the getCursDynamicXMLResult property. + * + * @param value + * allowed object is + * {@link GetCursDynamicXMLResponse.GetCursDynamicXMLResult } + * + */ + public void setGetCursDynamicXMLResult(GetCursDynamicXMLResponse.GetCursDynamicXMLResult value) { + this.getCursDynamicXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class GetCursDynamicXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursOnDate.java b/src/main/java/ru/cbr/web/GetCursOnDate.java new file mode 100644 index 0000000..14494fc --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursOnDate.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="On_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "onDate" +}) +@XmlRootElement(name = "GetCursOnDate") +public class GetCursOnDate { + + @XmlElement(name = "On_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar onDate; + + /** + * Gets the value of the onDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOnDate() { + return onDate; + } + + /** + * Sets the value of the onDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOnDate(XMLGregorianCalendar value) { + this.onDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursOnDateResponse.java b/src/main/java/ru/cbr/web/GetCursOnDateResponse.java new file mode 100644 index 0000000..1efb485 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursOnDateResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetCursOnDateResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getCursOnDateResult" +}) +@XmlRootElement(name = "GetCursOnDateResponse") +public class GetCursOnDateResponse { + + @XmlElement(name = "GetCursOnDateResult") + protected GetCursOnDateResponse.GetCursOnDateResult getCursOnDateResult; + + /** + * Gets the value of the getCursOnDateResult property. + * + * @return + * possible object is + * {@link GetCursOnDateResponse.GetCursOnDateResult } + * + */ + public GetCursOnDateResponse.GetCursOnDateResult getGetCursOnDateResult() { + return getCursOnDateResult; + } + + /** + * Sets the value of the getCursOnDateResult property. + * + * @param value + * allowed object is + * {@link GetCursOnDateResponse.GetCursOnDateResult } + * + */ + public void setGetCursOnDateResult(GetCursOnDateResponse.GetCursOnDateResult value) { + this.getCursOnDateResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class GetCursOnDateResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursOnDateXML.java b/src/main/java/ru/cbr/web/GetCursOnDateXML.java new file mode 100644 index 0000000..c25f681 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursOnDateXML.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="On_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "onDate" +}) +@XmlRootElement(name = "GetCursOnDateXML") +public class GetCursOnDateXML { + + @XmlElement(name = "On_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar onDate; + + /** + * Gets the value of the onDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOnDate() { + return onDate; + } + + /** + * Sets the value of the onDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOnDate(XMLGregorianCalendar value) { + this.onDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetCursOnDateXMLResponse.java b/src/main/java/ru/cbr/web/GetCursOnDateXMLResponse.java new file mode 100644 index 0000000..3c2f3b2 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetCursOnDateXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetCursOnDateXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getCursOnDateXMLResult" +}) +@XmlRootElement(name = "GetCursOnDateXMLResponse") +public class GetCursOnDateXMLResponse { + + @XmlElement(name = "GetCursOnDateXMLResult") + protected GetCursOnDateXMLResponse.GetCursOnDateXMLResult getCursOnDateXMLResult; + + /** + * Gets the value of the getCursOnDateXMLResult property. + * + * @return + * possible object is + * {@link GetCursOnDateXMLResponse.GetCursOnDateXMLResult } + * + */ + public GetCursOnDateXMLResponse.GetCursOnDateXMLResult getGetCursOnDateXMLResult() { + return getCursOnDateXMLResult; + } + + /** + * Sets the value of the getCursOnDateXMLResult property. + * + * @param value + * allowed object is + * {@link GetCursOnDateXMLResponse.GetCursOnDateXMLResult } + * + */ + public void setGetCursOnDateXMLResult(GetCursOnDateXMLResponse.GetCursOnDateXMLResult value) { + this.getCursOnDateXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class GetCursOnDateXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDate.java b/src/main/java/ru/cbr/web/GetLatestDate.java new file mode 100644 index 0000000..3e9910a --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDate.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "GetLatestDate") +public class GetLatestDate { + + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateResponse.java b/src/main/java/ru/cbr/web/GetLatestDateResponse.java new file mode 100644 index 0000000..403c973 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateResponse.java @@ -0,0 +1,64 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetLatestDateResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getLatestDateResult" +}) +@XmlRootElement(name = "GetLatestDateResponse") +public class GetLatestDateResponse { + + @XmlElement(name = "GetLatestDateResult") + protected String getLatestDateResult; + + /** + * Gets the value of the getLatestDateResult property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGetLatestDateResult() { + return getLatestDateResult; + } + + /** + * Sets the value of the getLatestDateResult property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGetLatestDateResult(String value) { + this.getLatestDateResult = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateSeld.java b/src/main/java/ru/cbr/web/GetLatestDateSeld.java new file mode 100644 index 0000000..a7d026c --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateSeld.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "GetLatestDateSeld") +public class GetLatestDateSeld { + + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateSeldResponse.java b/src/main/java/ru/cbr/web/GetLatestDateSeldResponse.java new file mode 100644 index 0000000..3b4552d --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateSeldResponse.java @@ -0,0 +1,64 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetLatestDateSeldResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getLatestDateSeldResult" +}) +@XmlRootElement(name = "GetLatestDateSeldResponse") +public class GetLatestDateSeldResponse { + + @XmlElement(name = "GetLatestDateSeldResult") + protected String getLatestDateSeldResult; + + /** + * Gets the value of the getLatestDateSeldResult property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGetLatestDateSeldResult() { + return getLatestDateSeldResult; + } + + /** + * Sets the value of the getLatestDateSeldResult property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGetLatestDateSeldResult(String value) { + this.getLatestDateSeldResult = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateTime.java b/src/main/java/ru/cbr/web/GetLatestDateTime.java new file mode 100644 index 0000000..ef5cb84 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateTime.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "GetLatestDateTime") +public class GetLatestDateTime { + + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateTimeResponse.java b/src/main/java/ru/cbr/web/GetLatestDateTimeResponse.java new file mode 100644 index 0000000..042b71b --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateTimeResponse.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetLatestDateTimeResult" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getLatestDateTimeResult" +}) +@XmlRootElement(name = "GetLatestDateTimeResponse") +public class GetLatestDateTimeResponse { + + @XmlElement(name = "GetLatestDateTimeResult", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar getLatestDateTimeResult; + + /** + * Gets the value of the getLatestDateTimeResult property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGetLatestDateTimeResult() { + return getLatestDateTimeResult; + } + + /** + * Sets the value of the getLatestDateTimeResult property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGetLatestDateTimeResult(XMLGregorianCalendar value) { + this.getLatestDateTimeResult = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateTimeSeld.java b/src/main/java/ru/cbr/web/GetLatestDateTimeSeld.java new file mode 100644 index 0000000..0777ea4 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateTimeSeld.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "GetLatestDateTimeSeld") +public class GetLatestDateTimeSeld { + + +} diff --git a/src/main/java/ru/cbr/web/GetLatestDateTimeSeldResponse.java b/src/main/java/ru/cbr/web/GetLatestDateTimeSeldResponse.java new file mode 100644 index 0000000..8f2240d --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestDateTimeSeldResponse.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetLatestDateTimeSeldResult" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getLatestDateTimeSeldResult" +}) +@XmlRootElement(name = "GetLatestDateTimeSeldResponse") +public class GetLatestDateTimeSeldResponse { + + @XmlElement(name = "GetLatestDateTimeSeldResult", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar getLatestDateTimeSeldResult; + + /** + * Gets the value of the getLatestDateTimeSeldResult property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGetLatestDateTimeSeldResult() { + return getLatestDateTimeSeldResult; + } + + /** + * Sets the value of the getLatestDateTimeSeldResult property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGetLatestDateTimeSeldResult(XMLGregorianCalendar value) { + this.getLatestDateTimeSeldResult = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetLatestReutersDateTime.java b/src/main/java/ru/cbr/web/GetLatestReutersDateTime.java new file mode 100644 index 0000000..044a4f0 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestReutersDateTime.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "GetLatestReutersDateTime") +public class GetLatestReutersDateTime { + + +} diff --git a/src/main/java/ru/cbr/web/GetLatestReutersDateTimeResponse.java b/src/main/java/ru/cbr/web/GetLatestReutersDateTimeResponse.java new file mode 100644 index 0000000..fc512d3 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetLatestReutersDateTimeResponse.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetLatestReutersDateTimeResult" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getLatestReutersDateTimeResult" +}) +@XmlRootElement(name = "GetLatestReutersDateTimeResponse") +public class GetLatestReutersDateTimeResponse { + + @XmlElement(name = "GetLatestReutersDateTimeResult", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar getLatestReutersDateTimeResult; + + /** + * Gets the value of the getLatestReutersDateTimeResult property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGetLatestReutersDateTimeResult() { + return getLatestReutersDateTimeResult; + } + + /** + * Sets the value of the getLatestReutersDateTimeResult property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGetLatestReutersDateTimeResult(XMLGregorianCalendar value) { + this.getLatestReutersDateTimeResult = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursDynamic.java b/src/main/java/ru/cbr/web/GetReutersCursDynamic.java new file mode 100644 index 0000000..bb76a4b --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursDynamic.java @@ -0,0 +1,116 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="NumCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate", + "numCode" +}) +@XmlRootElement(name = "GetReutersCursDynamic") +public class GetReutersCursDynamic { + + @XmlElement(name = "FromDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + @XmlElement(name = "NumCode") + protected int numCode; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + + /** + * Gets the value of the numCode property. + * + */ + public int getNumCode() { + return numCode; + } + + /** + * Sets the value of the numCode property. + * + */ + public void setNumCode(int value) { + this.numCode = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursDynamicResponse.java b/src/main/java/ru/cbr/web/GetReutersCursDynamicResponse.java new file mode 100644 index 0000000..2776a2b --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursDynamicResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetReutersCursDynamicResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getReutersCursDynamicResult" +}) +@XmlRootElement(name = "GetReutersCursDynamicResponse") +public class GetReutersCursDynamicResponse { + + @XmlElement(name = "GetReutersCursDynamicResult") + protected GetReutersCursDynamicResponse.GetReutersCursDynamicResult getReutersCursDynamicResult; + + /** + * Gets the value of the getReutersCursDynamicResult property. + * + * @return + * possible object is + * {@link GetReutersCursDynamicResponse.GetReutersCursDynamicResult } + * + */ + public GetReutersCursDynamicResponse.GetReutersCursDynamicResult getGetReutersCursDynamicResult() { + return getReutersCursDynamicResult; + } + + /** + * Sets the value of the getReutersCursDynamicResult property. + * + * @param value + * allowed object is + * {@link GetReutersCursDynamicResponse.GetReutersCursDynamicResult } + * + */ + public void setGetReutersCursDynamicResult(GetReutersCursDynamicResponse.GetReutersCursDynamicResult value) { + this.getReutersCursDynamicResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class GetReutersCursDynamicResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursDynamicXML.java b/src/main/java/ru/cbr/web/GetReutersCursDynamicXML.java new file mode 100644 index 0000000..5042879 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursDynamicXML.java @@ -0,0 +1,116 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="NumCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate", + "numCode" +}) +@XmlRootElement(name = "GetReutersCursDynamicXML") +public class GetReutersCursDynamicXML { + + @XmlElement(name = "FromDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + @XmlElement(name = "NumCode") + protected int numCode; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + + /** + * Gets the value of the numCode property. + * + */ + public int getNumCode() { + return numCode; + } + + /** + * Sets the value of the numCode property. + * + */ + public void setNumCode(int value) { + this.numCode = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursDynamicXMLResponse.java b/src/main/java/ru/cbr/web/GetReutersCursDynamicXMLResponse.java new file mode 100644 index 0000000..f29adc7 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursDynamicXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetReutersCursDynamicXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getReutersCursDynamicXMLResult" +}) +@XmlRootElement(name = "GetReutersCursDynamicXMLResponse") +public class GetReutersCursDynamicXMLResponse { + + @XmlElement(name = "GetReutersCursDynamicXMLResult") + protected GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult getReutersCursDynamicXMLResult; + + /** + * Gets the value of the getReutersCursDynamicXMLResult property. + * + * @return + * possible object is + * {@link GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult } + * + */ + public GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult getGetReutersCursDynamicXMLResult() { + return getReutersCursDynamicXMLResult; + } + + /** + * Sets the value of the getReutersCursDynamicXMLResult property. + * + * @param value + * allowed object is + * {@link GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult } + * + */ + public void setGetReutersCursDynamicXMLResult(GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult value) { + this.getReutersCursDynamicXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class GetReutersCursDynamicXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursOnDate.java b/src/main/java/ru/cbr/web/GetReutersCursOnDate.java new file mode 100644 index 0000000..4c14bae --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursOnDate.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="On_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "onDate" +}) +@XmlRootElement(name = "GetReutersCursOnDate") +public class GetReutersCursOnDate { + + @XmlElement(name = "On_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar onDate; + + /** + * Gets the value of the onDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOnDate() { + return onDate; + } + + /** + * Sets the value of the onDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOnDate(XMLGregorianCalendar value) { + this.onDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursOnDateResponse.java b/src/main/java/ru/cbr/web/GetReutersCursOnDateResponse.java new file mode 100644 index 0000000..0acb951 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursOnDateResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetReutersCursOnDateResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getReutersCursOnDateResult" +}) +@XmlRootElement(name = "GetReutersCursOnDateResponse") +public class GetReutersCursOnDateResponse { + + @XmlElement(name = "GetReutersCursOnDateResult") + protected GetReutersCursOnDateResponse.GetReutersCursOnDateResult getReutersCursOnDateResult; + + /** + * Gets the value of the getReutersCursOnDateResult property. + * + * @return + * possible object is + * {@link GetReutersCursOnDateResponse.GetReutersCursOnDateResult } + * + */ + public GetReutersCursOnDateResponse.GetReutersCursOnDateResult getGetReutersCursOnDateResult() { + return getReutersCursOnDateResult; + } + + /** + * Sets the value of the getReutersCursOnDateResult property. + * + * @param value + * allowed object is + * {@link GetReutersCursOnDateResponse.GetReutersCursOnDateResult } + * + */ + public void setGetReutersCursOnDateResult(GetReutersCursOnDateResponse.GetReutersCursOnDateResult value) { + this.getReutersCursOnDateResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class GetReutersCursOnDateResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursOnDateXML.java b/src/main/java/ru/cbr/web/GetReutersCursOnDateXML.java new file mode 100644 index 0000000..3f08b2c --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursOnDateXML.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="On_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "onDate" +}) +@XmlRootElement(name = "GetReutersCursOnDateXML") +public class GetReutersCursOnDateXML { + + @XmlElement(name = "On_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar onDate; + + /** + * Gets the value of the onDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOnDate() { + return onDate; + } + + /** + * Sets the value of the onDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOnDate(XMLGregorianCalendar value) { + this.onDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetReutersCursOnDateXMLResponse.java b/src/main/java/ru/cbr/web/GetReutersCursOnDateXMLResponse.java new file mode 100644 index 0000000..e6d44cf --- /dev/null +++ b/src/main/java/ru/cbr/web/GetReutersCursOnDateXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetReutersCursOnDateXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getReutersCursOnDateXMLResult" +}) +@XmlRootElement(name = "GetReutersCursOnDateXMLResponse") +public class GetReutersCursOnDateXMLResponse { + + @XmlElement(name = "GetReutersCursOnDateXMLResult") + protected GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult getReutersCursOnDateXMLResult; + + /** + * Gets the value of the getReutersCursOnDateXMLResult property. + * + * @return + * possible object is + * {@link GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult } + * + */ + public GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult getGetReutersCursOnDateXMLResult() { + return getReutersCursOnDateXMLResult; + } + + /** + * Sets the value of the getReutersCursOnDateXMLResult property. + * + * @param value + * allowed object is + * {@link GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult } + * + */ + public void setGetReutersCursOnDateXMLResult(GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult value) { + this.getReutersCursOnDateXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class GetReutersCursOnDateXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetSeldCursOnDate.java b/src/main/java/ru/cbr/web/GetSeldCursOnDate.java new file mode 100644 index 0000000..a7c2d80 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetSeldCursOnDate.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="On_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "onDate" +}) +@XmlRootElement(name = "GetSeldCursOnDate") +public class GetSeldCursOnDate { + + @XmlElement(name = "On_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar onDate; + + /** + * Gets the value of the onDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOnDate() { + return onDate; + } + + /** + * Sets the value of the onDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOnDate(XMLGregorianCalendar value) { + this.onDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetSeldCursOnDateResponse.java b/src/main/java/ru/cbr/web/GetSeldCursOnDateResponse.java new file mode 100644 index 0000000..ebfb380 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetSeldCursOnDateResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetSeldCursOnDateResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getSeldCursOnDateResult" +}) +@XmlRootElement(name = "GetSeldCursOnDateResponse") +public class GetSeldCursOnDateResponse { + + @XmlElement(name = "GetSeldCursOnDateResult") + protected GetSeldCursOnDateResponse.GetSeldCursOnDateResult getSeldCursOnDateResult; + + /** + * Gets the value of the getSeldCursOnDateResult property. + * + * @return + * possible object is + * {@link GetSeldCursOnDateResponse.GetSeldCursOnDateResult } + * + */ + public GetSeldCursOnDateResponse.GetSeldCursOnDateResult getGetSeldCursOnDateResult() { + return getSeldCursOnDateResult; + } + + /** + * Sets the value of the getSeldCursOnDateResult property. + * + * @param value + * allowed object is + * {@link GetSeldCursOnDateResponse.GetSeldCursOnDateResult } + * + */ + public void setGetSeldCursOnDateResult(GetSeldCursOnDateResponse.GetSeldCursOnDateResult value) { + this.getSeldCursOnDateResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class GetSeldCursOnDateResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/GetSeldCursOnDateXML.java b/src/main/java/ru/cbr/web/GetSeldCursOnDateXML.java new file mode 100644 index 0000000..0872bd2 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetSeldCursOnDateXML.java @@ -0,0 +1,67 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="On_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "onDate" +}) +@XmlRootElement(name = "GetSeldCursOnDateXML") +public class GetSeldCursOnDateXML { + + @XmlElement(name = "On_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar onDate; + + /** + * Gets the value of the onDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOnDate() { + return onDate; + } + + /** + * Sets the value of the onDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOnDate(XMLGregorianCalendar value) { + this.onDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/GetSeldCursOnDateXMLResponse.java b/src/main/java/ru/cbr/web/GetSeldCursOnDateXMLResponse.java new file mode 100644 index 0000000..7ac3102 --- /dev/null +++ b/src/main/java/ru/cbr/web/GetSeldCursOnDateXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetSeldCursOnDateXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getSeldCursOnDateXMLResult" +}) +@XmlRootElement(name = "GetSeldCursOnDateXMLResponse") +public class GetSeldCursOnDateXMLResponse { + + @XmlElement(name = "GetSeldCursOnDateXMLResult") + protected GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult getSeldCursOnDateXMLResult; + + /** + * Gets the value of the getSeldCursOnDateXMLResult property. + * + * @return + * possible object is + * {@link GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult } + * + */ + public GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult getGetSeldCursOnDateXMLResult() { + return getSeldCursOnDateXMLResult; + } + + /** + * Sets the value of the getSeldCursOnDateXMLResult property. + * + * @param value + * allowed object is + * {@link GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult } + * + */ + public void setGetSeldCursOnDateXMLResult(GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult value) { + this.getSeldCursOnDateXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class GetSeldCursOnDateXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/MKR.java b/src/main/java/ru/cbr/web/MKR.java new file mode 100644 index 0000000..fb9f055 --- /dev/null +++ b/src/main/java/ru/cbr/web/MKR.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "MKR") +public class MKR { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/MKRResponse.java b/src/main/java/ru/cbr/web/MKRResponse.java new file mode 100644 index 0000000..c5a5c6d --- /dev/null +++ b/src/main/java/ru/cbr/web/MKRResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="MKRResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mkrResult" +}) +@XmlRootElement(name = "MKRResponse") +public class MKRResponse { + + @XmlElement(name = "MKRResult") + protected MKRResponse.MKRResult mkrResult; + + /** + * Gets the value of the mkrResult property. + * + * @return + * possible object is + * {@link MKRResponse.MKRResult } + * + */ + public MKRResponse.MKRResult getMKRResult() { + return mkrResult; + } + + /** + * Sets the value of the mkrResult property. + * + * @param value + * allowed object is + * {@link MKRResponse.MKRResult } + * + */ + public void setMKRResult(MKRResponse.MKRResult value) { + this.mkrResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class MKRResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/MKRXML.java b/src/main/java/ru/cbr/web/MKRXML.java new file mode 100644 index 0000000..e3e8cca --- /dev/null +++ b/src/main/java/ru/cbr/web/MKRXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "MKRXML") +public class MKRXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/MKRXMLResponse.java b/src/main/java/ru/cbr/web/MKRXMLResponse.java new file mode 100644 index 0000000..f3b83ff --- /dev/null +++ b/src/main/java/ru/cbr/web/MKRXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="MKRXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mkrxmlResult" +}) +@XmlRootElement(name = "MKRXMLResponse") +public class MKRXMLResponse { + + @XmlElement(name = "MKRXMLResult") + protected MKRXMLResponse.MKRXMLResult mkrxmlResult; + + /** + * Gets the value of the mkrxmlResult property. + * + * @return + * possible object is + * {@link MKRXMLResponse.MKRXMLResult } + * + */ + public MKRXMLResponse.MKRXMLResult getMKRXMLResult() { + return mkrxmlResult; + } + + /** + * Sets the value of the mkrxmlResult property. + * + * @param value + * allowed object is + * {@link MKRXMLResponse.MKRXMLResult } + * + */ + public void setMKRXMLResult(MKRXMLResponse.MKRXMLResult value) { + this.mkrxmlResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class MKRXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/MainInfoXML.java b/src/main/java/ru/cbr/web/MainInfoXML.java new file mode 100644 index 0000000..fda45bf --- /dev/null +++ b/src/main/java/ru/cbr/web/MainInfoXML.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "MainInfoXML") +public class MainInfoXML { + + +} diff --git a/src/main/java/ru/cbr/web/MainInfoXMLResponse.java b/src/main/java/ru/cbr/web/MainInfoXMLResponse.java new file mode 100644 index 0000000..ad30b45 --- /dev/null +++ b/src/main/java/ru/cbr/web/MainInfoXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="MainInfoXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mainInfoXMLResult" +}) +@XmlRootElement(name = "MainInfoXMLResponse") +public class MainInfoXMLResponse { + + @XmlElement(name = "MainInfoXMLResult") + protected MainInfoXMLResponse.MainInfoXMLResult mainInfoXMLResult; + + /** + * Gets the value of the mainInfoXMLResult property. + * + * @return + * possible object is + * {@link MainInfoXMLResponse.MainInfoXMLResult } + * + */ + public MainInfoXMLResponse.MainInfoXMLResult getMainInfoXMLResult() { + return mainInfoXMLResult; + } + + /** + * Sets the value of the mainInfoXMLResult property. + * + * @param value + * allowed object is + * {@link MainInfoXMLResponse.MainInfoXMLResult } + * + */ + public void setMainInfoXMLResult(MainInfoXMLResponse.MainInfoXMLResult value) { + this.mainInfoXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class MainInfoXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/Mrrf.java b/src/main/java/ru/cbr/web/Mrrf.java new file mode 100644 index 0000000..da7d8e2 --- /dev/null +++ b/src/main/java/ru/cbr/web/Mrrf.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "mrrf") +public class Mrrf { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/Mrrf7D.java b/src/main/java/ru/cbr/web/Mrrf7D.java new file mode 100644 index 0000000..b971f5d --- /dev/null +++ b/src/main/java/ru/cbr/web/Mrrf7D.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "mrrf7D") +public class Mrrf7D { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/Mrrf7DResponse.java b/src/main/java/ru/cbr/web/Mrrf7DResponse.java new file mode 100644 index 0000000..6cef73f --- /dev/null +++ b/src/main/java/ru/cbr/web/Mrrf7DResponse.java @@ -0,0 +1,128 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="mrrf7DResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mrrf7DResult" +}) +@XmlRootElement(name = "mrrf7DResponse") +public class Mrrf7DResponse { + + protected Mrrf7DResponse.Mrrf7DResult mrrf7DResult; + + /** + * Gets the value of the mrrf7DResult property. + * + * @return + * possible object is + * {@link Mrrf7DResponse.Mrrf7DResult } + * + */ + public Mrrf7DResponse.Mrrf7DResult getMrrf7DResult() { + return mrrf7DResult; + } + + /** + * Sets the value of the mrrf7DResult property. + * + * @param value + * allowed object is + * {@link Mrrf7DResponse.Mrrf7DResult } + * + */ + public void setMrrf7DResult(Mrrf7DResponse.Mrrf7DResult value) { + this.mrrf7DResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class Mrrf7DResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/Mrrf7DXML.java b/src/main/java/ru/cbr/web/Mrrf7DXML.java new file mode 100644 index 0000000..0aa8fe3 --- /dev/null +++ b/src/main/java/ru/cbr/web/Mrrf7DXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "mrrf7DXML") +public class Mrrf7DXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/Mrrf7DXMLResponse.java b/src/main/java/ru/cbr/web/Mrrf7DXMLResponse.java new file mode 100644 index 0000000..6b0fa19 --- /dev/null +++ b/src/main/java/ru/cbr/web/Mrrf7DXMLResponse.java @@ -0,0 +1,138 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="mrrf7DXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mrrf7DXMLResult" +}) +@XmlRootElement(name = "mrrf7DXMLResponse") +public class Mrrf7DXMLResponse { + + protected Mrrf7DXMLResponse.Mrrf7DXMLResult mrrf7DXMLResult; + + /** + * Gets the value of the mrrf7DXMLResult property. + * + * @return + * possible object is + * {@link Mrrf7DXMLResponse.Mrrf7DXMLResult } + * + */ + public Mrrf7DXMLResponse.Mrrf7DXMLResult getMrrf7DXMLResult() { + return mrrf7DXMLResult; + } + + /** + * Sets the value of the mrrf7DXMLResult property. + * + * @param value + * allowed object is + * {@link Mrrf7DXMLResponse.Mrrf7DXMLResult } + * + */ + public void setMrrf7DXMLResult(Mrrf7DXMLResponse.Mrrf7DXMLResult value) { + this.mrrf7DXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class Mrrf7DXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/MrrfResponse.java b/src/main/java/ru/cbr/web/MrrfResponse.java new file mode 100644 index 0000000..23c82ef --- /dev/null +++ b/src/main/java/ru/cbr/web/MrrfResponse.java @@ -0,0 +1,128 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="mrrfResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mrrfResult" +}) +@XmlRootElement(name = "mrrfResponse") +public class MrrfResponse { + + protected MrrfResponse.MrrfResult mrrfResult; + + /** + * Gets the value of the mrrfResult property. + * + * @return + * possible object is + * {@link MrrfResponse.MrrfResult } + * + */ + public MrrfResponse.MrrfResult getMrrfResult() { + return mrrfResult; + } + + /** + * Sets the value of the mrrfResult property. + * + * @param value + * allowed object is + * {@link MrrfResponse.MrrfResult } + * + */ + public void setMrrfResult(MrrfResponse.MrrfResult value) { + this.mrrfResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class MrrfResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/MrrfXML.java b/src/main/java/ru/cbr/web/MrrfXML.java new file mode 100644 index 0000000..358af92 --- /dev/null +++ b/src/main/java/ru/cbr/web/MrrfXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "mrrfXML") +public class MrrfXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/MrrfXMLResponse.java b/src/main/java/ru/cbr/web/MrrfXMLResponse.java new file mode 100644 index 0000000..7f2fd7d --- /dev/null +++ b/src/main/java/ru/cbr/web/MrrfXMLResponse.java @@ -0,0 +1,138 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="mrrfXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "mrrfXMLResult" +}) +@XmlRootElement(name = "mrrfXMLResponse") +public class MrrfXMLResponse { + + protected MrrfXMLResponse.MrrfXMLResult mrrfXMLResult; + + /** + * Gets the value of the mrrfXMLResult property. + * + * @return + * possible object is + * {@link MrrfXMLResponse.MrrfXMLResult } + * + */ + public MrrfXMLResponse.MrrfXMLResult getMrrfXMLResult() { + return mrrfXMLResult; + } + + /** + * Sets the value of the mrrfXMLResult property. + * + * @param value + * allowed object is + * {@link MrrfXMLResponse.MrrfXMLResult } + * + */ + public void setMrrfXMLResult(MrrfXMLResponse.MrrfXMLResult value) { + this.mrrfXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class MrrfXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/NewsInfo.java b/src/main/java/ru/cbr/web/NewsInfo.java new file mode 100644 index 0000000..7a5a539 --- /dev/null +++ b/src/main/java/ru/cbr/web/NewsInfo.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "NewsInfo") +public class NewsInfo { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/NewsInfoResponse.java b/src/main/java/ru/cbr/web/NewsInfoResponse.java new file mode 100644 index 0000000..e7bbb54 --- /dev/null +++ b/src/main/java/ru/cbr/web/NewsInfoResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="NewsInfoResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "newsInfoResult" +}) +@XmlRootElement(name = "NewsInfoResponse") +public class NewsInfoResponse { + + @XmlElement(name = "NewsInfoResult") + protected NewsInfoResponse.NewsInfoResult newsInfoResult; + + /** + * Gets the value of the newsInfoResult property. + * + * @return + * possible object is + * {@link NewsInfoResponse.NewsInfoResult } + * + */ + public NewsInfoResponse.NewsInfoResult getNewsInfoResult() { + return newsInfoResult; + } + + /** + * Sets the value of the newsInfoResult property. + * + * @param value + * allowed object is + * {@link NewsInfoResponse.NewsInfoResult } + * + */ + public void setNewsInfoResult(NewsInfoResponse.NewsInfoResult value) { + this.newsInfoResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class NewsInfoResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/NewsInfoXML.java b/src/main/java/ru/cbr/web/NewsInfoXML.java new file mode 100644 index 0000000..3ef60a6 --- /dev/null +++ b/src/main/java/ru/cbr/web/NewsInfoXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "NewsInfoXML") +public class NewsInfoXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/NewsInfoXMLResponse.java b/src/main/java/ru/cbr/web/NewsInfoXMLResponse.java new file mode 100644 index 0000000..f289fc9 --- /dev/null +++ b/src/main/java/ru/cbr/web/NewsInfoXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="NewsInfoXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "newsInfoXMLResult" +}) +@XmlRootElement(name = "NewsInfoXMLResponse") +public class NewsInfoXMLResponse { + + @XmlElement(name = "NewsInfoXMLResult") + protected NewsInfoXMLResponse.NewsInfoXMLResult newsInfoXMLResult; + + /** + * Gets the value of the newsInfoXMLResult property. + * + * @return + * possible object is + * {@link NewsInfoXMLResponse.NewsInfoXMLResult } + * + */ + public NewsInfoXMLResponse.NewsInfoXMLResult getNewsInfoXMLResult() { + return newsInfoXMLResult; + } + + /** + * Sets the value of the newsInfoXMLResult property. + * + * @param value + * allowed object is + * {@link NewsInfoXMLResponse.NewsInfoXMLResult } + * + */ + public void setNewsInfoXMLResult(NewsInfoXMLResponse.NewsInfoXMLResult value) { + this.newsInfoXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class NewsInfoXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/ObjectFactory.java b/src/main/java/ru/cbr/web/ObjectFactory.java new file mode 100644 index 0000000..17dfa1f --- /dev/null +++ b/src/main/java/ru/cbr/web/ObjectFactory.java @@ -0,0 +1,1816 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the ru.cbr.web package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ru.cbr.web + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link EnumReutersValutesResponse } + * + */ + public EnumReutersValutesResponse createEnumReutersValutesResponse() { + return new EnumReutersValutesResponse(); + } + + /** + * Create an instance of {@link GetReutersCursDynamicXMLResponse } + * + */ + public GetReutersCursDynamicXMLResponse createGetReutersCursDynamicXMLResponse() { + return new GetReutersCursDynamicXMLResponse(); + } + + /** + * Create an instance of {@link CoinsBaseResponse } + * + */ + public CoinsBaseResponse createCoinsBaseResponse() { + return new CoinsBaseResponse(); + } + + /** + * Create an instance of {@link SwapDynamicResponse } + * + */ + public SwapDynamicResponse createSwapDynamicResponse() { + return new SwapDynamicResponse(); + } + + /** + * Create an instance of {@link OmodInfoXMLResponse } + * + */ + public OmodInfoXMLResponse createOmodInfoXMLResponse() { + return new OmodInfoXMLResponse(); + } + + /** + * Create an instance of {@link ValIntDayXMLResponse } + * + */ + public ValIntDayXMLResponse createValIntDayXMLResponse() { + return new ValIntDayXMLResponse(); + } + + /** + * Create an instance of {@link GetReutersCursOnDateXMLResponse } + * + */ + public GetReutersCursOnDateXMLResponse createGetReutersCursOnDateXMLResponse() { + return new GetReutersCursOnDateXMLResponse(); + } + + /** + * Create an instance of {@link SaldoResponse } + * + */ + public SaldoResponse createSaldoResponse() { + return new SaldoResponse(); + } + + /** + * Create an instance of {@link Mrrf7DXMLResponse } + * + */ + public Mrrf7DXMLResponse createMrrf7DXMLResponse() { + return new Mrrf7DXMLResponse(); + } + + /** + * Create an instance of {@link SwapDayTotalXMLResponse } + * + */ + public SwapDayTotalXMLResponse createSwapDayTotalXMLResponse() { + return new SwapDayTotalXMLResponse(); + } + + /** + * Create an instance of {@link MKRResponse } + * + */ + public MKRResponse createMKRResponse() { + return new MKRResponse(); + } + + /** + * Create an instance of {@link SaldoXMLResponse } + * + */ + public SaldoXMLResponse createSaldoXMLResponse() { + return new SaldoXMLResponse(); + } + + /** + * Create an instance of {@link RepoDebtXMLResponse } + * + */ + public RepoDebtXMLResponse createRepoDebtXMLResponse() { + return new RepoDebtXMLResponse(); + } + + /** + * Create an instance of {@link Mrrf7DResponse } + * + */ + public Mrrf7DResponse createMrrf7DResponse() { + return new Mrrf7DResponse(); + } + + /** + * Create an instance of {@link GetCursOnDateResponse } + * + */ + public GetCursOnDateResponse createGetCursOnDateResponse() { + return new GetCursOnDateResponse(); + } + + /** + * Create an instance of {@link CoinsBaseXMLResponse } + * + */ + public CoinsBaseXMLResponse createCoinsBaseXMLResponse() { + return new CoinsBaseXMLResponse(); + } + + /** + * Create an instance of {@link EnumValutesResponse } + * + */ + public EnumValutesResponse createEnumValutesResponse() { + return new EnumValutesResponse(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDXMLResponse } + * + */ + public SwapInfoSellUSDXMLResponse createSwapInfoSellUSDXMLResponse() { + return new SwapInfoSellUSDXMLResponse(); + } + + /** + * Create an instance of {@link DragMetDynamicResponse } + * + */ + public DragMetDynamicResponse createDragMetDynamicResponse() { + return new DragMetDynamicResponse(); + } + + /** + * Create an instance of {@link XVolXMLResponse } + * + */ + public XVolXMLResponse createXVolXMLResponse() { + return new XVolXMLResponse(); + } + + /** + * Create an instance of {@link MainInfoXMLResponse } + * + */ + public MainInfoXMLResponse createMainInfoXMLResponse() { + return new MainInfoXMLResponse(); + } + + /** + * Create an instance of {@link EnumValutesXMLResponse } + * + */ + public EnumValutesXMLResponse createEnumValutesXMLResponse() { + return new EnumValutesXMLResponse(); + } + + /** + * Create an instance of {@link FixingBaseResponse } + * + */ + public FixingBaseResponse createFixingBaseResponse() { + return new FixingBaseResponse(); + } + + /** + * Create an instance of {@link SwapDynamicXMLResponse } + * + */ + public SwapDynamicXMLResponse createSwapDynamicXMLResponse() { + return new SwapDynamicXMLResponse(); + } + + /** + * Create an instance of {@link GetCursDynamicXMLResponse } + * + */ + public GetCursDynamicXMLResponse createGetCursDynamicXMLResponse() { + return new GetCursDynamicXMLResponse(); + } + + /** + * Create an instance of {@link GetReutersCursDynamicResponse } + * + */ + public GetReutersCursDynamicResponse createGetReutersCursDynamicResponse() { + return new GetReutersCursDynamicResponse(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDResponse } + * + */ + public SwapInfoSellUSDResponse createSwapInfoSellUSDResponse() { + return new SwapInfoSellUSDResponse(); + } + + /** + * Create an instance of {@link ROISfixResponse } + * + */ + public ROISfixResponse createROISfixResponse() { + return new ROISfixResponse(); + } + + /** + * Create an instance of {@link RepoDebtUSDXMLResponse } + * + */ + public RepoDebtUSDXMLResponse createRepoDebtUSDXMLResponse() { + return new RepoDebtUSDXMLResponse(); + } + + /** + * Create an instance of {@link EnumReutersValutesXMLResponse } + * + */ + public EnumReutersValutesXMLResponse createEnumReutersValutesXMLResponse() { + return new EnumReutersValutesXMLResponse(); + } + + /** + * Create an instance of {@link DepoDynamicResponse } + * + */ + public DepoDynamicResponse createDepoDynamicResponse() { + return new DepoDynamicResponse(); + } + + /** + * Create an instance of {@link ValIntDayResponse } + * + */ + public ValIntDayResponse createValIntDayResponse() { + return new ValIntDayResponse(); + } + + /** + * Create an instance of {@link RepoDebtResponse } + * + */ + public RepoDebtResponse createRepoDebtResponse() { + return new RepoDebtResponse(); + } + + /** + * Create an instance of {@link XVolResponse } + * + */ + public XVolResponse createXVolResponse() { + return new XVolResponse(); + } + + /** + * Create an instance of {@link DVXMLResponse } + * + */ + public DVXMLResponse createDVXMLResponse() { + return new DVXMLResponse(); + } + + /** + * Create an instance of {@link OvernightResponse } + * + */ + public OvernightResponse createOvernightResponse() { + return new OvernightResponse(); + } + + /** + * Create an instance of {@link SwapMonthTotalXMLResponse } + * + */ + public SwapMonthTotalXMLResponse createSwapMonthTotalXMLResponse() { + return new SwapMonthTotalXMLResponse(); + } + + /** + * Create an instance of {@link GetCursDynamicResponse } + * + */ + public GetCursDynamicResponse createGetCursDynamicResponse() { + return new GetCursDynamicResponse(); + } + + /** + * Create an instance of {@link BiCurBacketXMLResponse } + * + */ + public BiCurBacketXMLResponse createBiCurBacketXMLResponse() { + return new BiCurBacketXMLResponse(); + } + + /** + * Create an instance of {@link AllDataInfoXMLResponse } + * + */ + public AllDataInfoXMLResponse createAllDataInfoXMLResponse() { + return new AllDataInfoXMLResponse(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDVolXMLResponse } + * + */ + public SwapInfoSellUSDVolXMLResponse createSwapInfoSellUSDVolXMLResponse() { + return new SwapInfoSellUSDVolXMLResponse(); + } + + /** + * Create an instance of {@link GetSeldCursOnDateResponse } + * + */ + public GetSeldCursOnDateResponse createGetSeldCursOnDateResponse() { + return new GetSeldCursOnDateResponse(); + } + + /** + * Create an instance of {@link BauctionXMLResponse } + * + */ + public BauctionXMLResponse createBauctionXMLResponse() { + return new BauctionXMLResponse(); + } + + /** + * Create an instance of {@link RuoniaResponse } + * + */ + public RuoniaResponse createRuoniaResponse() { + return new RuoniaResponse(); + } + + /** + * Create an instance of {@link OstatDepoXMLResponse } + * + */ + public OstatDepoXMLResponse createOstatDepoXMLResponse() { + return new OstatDepoXMLResponse(); + } + + /** + * Create an instance of {@link OstatDynamicResponse } + * + */ + public OstatDynamicResponse createOstatDynamicResponse() { + return new OstatDynamicResponse(); + } + + /** + * Create an instance of {@link BiCurBacketResponse } + * + */ + public BiCurBacketResponse createBiCurBacketResponse() { + return new BiCurBacketResponse(); + } + + /** + * Create an instance of {@link OstatDynamicXMLResponse } + * + */ + public OstatDynamicXMLResponse createOstatDynamicXMLResponse() { + return new OstatDynamicXMLResponse(); + } + + /** + * Create an instance of {@link DragMetDynamicXMLResponse } + * + */ + public DragMetDynamicXMLResponse createDragMetDynamicXMLResponse() { + return new DragMetDynamicXMLResponse(); + } + + /** + * Create an instance of {@link GetReutersCursOnDateResponse } + * + */ + public GetReutersCursOnDateResponse createGetReutersCursOnDateResponse() { + return new GetReutersCursOnDateResponse(); + } + + /** + * Create an instance of {@link RepoDebtUSDResponse } + * + */ + public RepoDebtUSDResponse createRepoDebtUSDResponse() { + return new RepoDebtUSDResponse(); + } + + /** + * Create an instance of {@link NewsInfoResponse } + * + */ + public NewsInfoResponse createNewsInfoResponse() { + return new NewsInfoResponse(); + } + + /** + * Create an instance of {@link BauctionResponse } + * + */ + public BauctionResponse createBauctionResponse() { + return new BauctionResponse(); + } + + /** + * Create an instance of {@link BiCurBaseXMLResponse } + * + */ + public BiCurBaseXMLResponse createBiCurBaseXMLResponse() { + return new BiCurBaseXMLResponse(); + } + + /** + * Create an instance of {@link ROISfixXMLResponse } + * + */ + public ROISfixXMLResponse createROISfixXMLResponse() { + return new ROISfixXMLResponse(); + } + + /** + * Create an instance of {@link OvernightXMLResponse } + * + */ + public OvernightXMLResponse createOvernightXMLResponse() { + return new OvernightXMLResponse(); + } + + /** + * Create an instance of {@link NewsInfoXMLResponse } + * + */ + public NewsInfoXMLResponse createNewsInfoXMLResponse() { + return new NewsInfoXMLResponse(); + } + + /** + * Create an instance of {@link SwapDayTotalResponse } + * + */ + public SwapDayTotalResponse createSwapDayTotalResponse() { + return new SwapDayTotalResponse(); + } + + /** + * Create an instance of {@link RuoniaXMLResponse } + * + */ + public RuoniaXMLResponse createRuoniaXMLResponse() { + return new RuoniaXMLResponse(); + } + + /** + * Create an instance of {@link SwapMonthTotalResponse } + * + */ + public SwapMonthTotalResponse createSwapMonthTotalResponse() { + return new SwapMonthTotalResponse(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDVolResponse } + * + */ + public SwapInfoSellUSDVolResponse createSwapInfoSellUSDVolResponse() { + return new SwapInfoSellUSDVolResponse(); + } + + /** + * Create an instance of {@link DVResponse } + * + */ + public DVResponse createDVResponse() { + return new DVResponse(); + } + + /** + * Create an instance of {@link FixingBaseXMLResponse } + * + */ + public FixingBaseXMLResponse createFixingBaseXMLResponse() { + return new FixingBaseXMLResponse(); + } + + /** + * Create an instance of {@link DepoDynamicXMLResponse } + * + */ + public DepoDynamicXMLResponse createDepoDynamicXMLResponse() { + return new DepoDynamicXMLResponse(); + } + + /** + * Create an instance of {@link GetSeldCursOnDateXMLResponse } + * + */ + public GetSeldCursOnDateXMLResponse createGetSeldCursOnDateXMLResponse() { + return new GetSeldCursOnDateXMLResponse(); + } + + /** + * Create an instance of {@link BiCurBaseResponse } + * + */ + public BiCurBaseResponse createBiCurBaseResponse() { + return new BiCurBaseResponse(); + } + + /** + * Create an instance of {@link MKRXMLResponse } + * + */ + public MKRXMLResponse createMKRXMLResponse() { + return new MKRXMLResponse(); + } + + /** + * Create an instance of {@link OstatDepoResponse } + * + */ + public OstatDepoResponse createOstatDepoResponse() { + return new OstatDepoResponse(); + } + + /** + * Create an instance of {@link GetCursOnDateXMLResponse } + * + */ + public GetCursOnDateXMLResponse createGetCursOnDateXMLResponse() { + return new GetCursOnDateXMLResponse(); + } + + /** + * Create an instance of {@link MrrfXMLResponse } + * + */ + public MrrfXMLResponse createMrrfXMLResponse() { + return new MrrfXMLResponse(); + } + + /** + * Create an instance of {@link MrrfResponse } + * + */ + public MrrfResponse createMrrfResponse() { + return new MrrfResponse(); + } + + /** + * Create an instance of {@link DragMetDynamicXML } + * + */ + public DragMetDynamicXML createDragMetDynamicXML() { + return new DragMetDynamicXML(); + } + + /** + * Create an instance of {@link EnumReutersValutesResponse.EnumReutersValutesResult } + * + */ + public EnumReutersValutesResponse.EnumReutersValutesResult createEnumReutersValutesResponseEnumReutersValutesResult() { + return new EnumReutersValutesResponse.EnumReutersValutesResult(); + } + + /** + * Create an instance of {@link GetReutersCursDynamicXML } + * + */ + public GetReutersCursDynamicXML createGetReutersCursDynamicXML() { + return new GetReutersCursDynamicXML(); + } + + /** + * Create an instance of {@link GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult } + * + */ + public GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult createGetReutersCursDynamicXMLResponseGetReutersCursDynamicXMLResult() { + return new GetReutersCursDynamicXMLResponse.GetReutersCursDynamicXMLResult(); + } + + /** + * Create an instance of {@link CoinsBaseResponse.CoinsBaseResult } + * + */ + public CoinsBaseResponse.CoinsBaseResult createCoinsBaseResponseCoinsBaseResult() { + return new CoinsBaseResponse.CoinsBaseResult(); + } + + /** + * Create an instance of {@link CoinsBaseXML } + * + */ + public CoinsBaseXML createCoinsBaseXML() { + return new CoinsBaseXML(); + } + + /** + * Create an instance of {@link OmodInfoXML } + * + */ + public OmodInfoXML createOmodInfoXML() { + return new OmodInfoXML(); + } + + /** + * Create an instance of {@link SwapDynamicResponse.SwapDynamicResult } + * + */ + public SwapDynamicResponse.SwapDynamicResult createSwapDynamicResponseSwapDynamicResult() { + return new SwapDynamicResponse.SwapDynamicResult(); + } + + /** + * Create an instance of {@link OmodInfoXMLResponse.OmodInfoXMLResult } + * + */ + public OmodInfoXMLResponse.OmodInfoXMLResult createOmodInfoXMLResponseOmodInfoXMLResult() { + return new OmodInfoXMLResponse.OmodInfoXMLResult(); + } + + /** + * Create an instance of {@link ValIntDayXMLResponse.ValIntDayXMLResult } + * + */ + public ValIntDayXMLResponse.ValIntDayXMLResult createValIntDayXMLResponseValIntDayXMLResult() { + return new ValIntDayXMLResponse.ValIntDayXMLResult(); + } + + /** + * Create an instance of {@link GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult } + * + */ + public GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult createGetReutersCursOnDateXMLResponseGetReutersCursOnDateXMLResult() { + return new GetReutersCursOnDateXMLResponse.GetReutersCursOnDateXMLResult(); + } + + /** + * Create an instance of {@link SaldoResponse.SaldoResult } + * + */ + public SaldoResponse.SaldoResult createSaldoResponseSaldoResult() { + return new SaldoResponse.SaldoResult(); + } + + /** + * Create an instance of {@link GetLatestDateTime } + * + */ + public GetLatestDateTime createGetLatestDateTime() { + return new GetLatestDateTime(); + } + + /** + * Create an instance of {@link Mrrf7DXMLResponse.Mrrf7DXMLResult } + * + */ + public Mrrf7DXMLResponse.Mrrf7DXMLResult createMrrf7DXMLResponseMrrf7DXMLResult() { + return new Mrrf7DXMLResponse.Mrrf7DXMLResult(); + } + + /** + * Create an instance of {@link SwapDayTotalXMLResponse.SwapDayTotalXMLResult } + * + */ + public SwapDayTotalXMLResponse.SwapDayTotalXMLResult createSwapDayTotalXMLResponseSwapDayTotalXMLResult() { + return new SwapDayTotalXMLResponse.SwapDayTotalXMLResult(); + } + + /** + * Create an instance of {@link BiCurBacket } + * + */ + public BiCurBacket createBiCurBacket() { + return new BiCurBacket(); + } + + /** + * Create an instance of {@link MKRResponse.MKRResult } + * + */ + public MKRResponse.MKRResult createMKRResponseMKRResult() { + return new MKRResponse.MKRResult(); + } + + /** + * Create an instance of {@link Overnight } + * + */ + public Overnight createOvernight() { + return new Overnight(); + } + + /** + * Create an instance of {@link SaldoXMLResponse.SaldoXMLResult } + * + */ + public SaldoXMLResponse.SaldoXMLResult createSaldoXMLResponseSaldoXMLResult() { + return new SaldoXMLResponse.SaldoXMLResult(); + } + + /** + * Create an instance of {@link ROISfixXML } + * + */ + public ROISfixXML createROISfixXML() { + return new ROISfixXML(); + } + + /** + * Create an instance of {@link GetSeldCursOnDate } + * + */ + public GetSeldCursOnDate createGetSeldCursOnDate() { + return new GetSeldCursOnDate(); + } + + /** + * Create an instance of {@link RepoDebtXMLResponse.RepoDebtXMLResult } + * + */ + public RepoDebtXMLResponse.RepoDebtXMLResult createRepoDebtXMLResponseRepoDebtXMLResult() { + return new RepoDebtXMLResponse.RepoDebtXMLResult(); + } + + /** + * Create an instance of {@link EnumValutesXML } + * + */ + public EnumValutesXML createEnumValutesXML() { + return new EnumValutesXML(); + } + + /** + * Create an instance of {@link ValIntDayXML } + * + */ + public ValIntDayXML createValIntDayXML() { + return new ValIntDayXML(); + } + + /** + * Create an instance of {@link BiCurBaseXML } + * + */ + public BiCurBaseXML createBiCurBaseXML() { + return new BiCurBaseXML(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDXML } + * + */ + public SwapInfoSellUSDXML createSwapInfoSellUSDXML() { + return new SwapInfoSellUSDXML(); + } + + /** + * Create an instance of {@link GetCursOnDate } + * + */ + public GetCursOnDate createGetCursOnDate() { + return new GetCursOnDate(); + } + + /** + * Create an instance of {@link Mrrf7DResponse.Mrrf7DResult } + * + */ + public Mrrf7DResponse.Mrrf7DResult createMrrf7DResponseMrrf7DResult() { + return new Mrrf7DResponse.Mrrf7DResult(); + } + + /** + * Create an instance of {@link RepoDebtUSDXML } + * + */ + public RepoDebtUSDXML createRepoDebtUSDXML() { + return new RepoDebtUSDXML(); + } + + /** + * Create an instance of {@link OstatDynamic } + * + */ + public OstatDynamic createOstatDynamic() { + return new OstatDynamic(); + } + + /** + * Create an instance of {@link ROISfix } + * + */ + public ROISfix createROISfix() { + return new ROISfix(); + } + + /** + * Create an instance of {@link Mrrf7D } + * + */ + public Mrrf7D createMrrf7D() { + return new Mrrf7D(); + } + + /** + * Create an instance of {@link OvernightXML } + * + */ + public OvernightXML createOvernightXML() { + return new OvernightXML(); + } + + /** + * Create an instance of {@link GetCursOnDateResponse.GetCursOnDateResult } + * + */ + public GetCursOnDateResponse.GetCursOnDateResult createGetCursOnDateResponseGetCursOnDateResult() { + return new GetCursOnDateResponse.GetCursOnDateResult(); + } + + /** + * Create an instance of {@link CoinsBaseXMLResponse.CoinsBaseXMLResult } + * + */ + public CoinsBaseXMLResponse.CoinsBaseXMLResult createCoinsBaseXMLResponseCoinsBaseXMLResult() { + return new CoinsBaseXMLResponse.CoinsBaseXMLResult(); + } + + /** + * Create an instance of {@link GetLatestDateTimeResponse } + * + */ + public GetLatestDateTimeResponse createGetLatestDateTimeResponse() { + return new GetLatestDateTimeResponse(); + } + + /** + * Create an instance of {@link GetReutersCursDynamic } + * + */ + public GetReutersCursDynamic createGetReutersCursDynamic() { + return new GetReutersCursDynamic(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDVolXML } + * + */ + public SwapInfoSellUSDVolXML createSwapInfoSellUSDVolXML() { + return new SwapInfoSellUSDVolXML(); + } + + /** + * Create an instance of {@link EnumValutesResponse.EnumValutesResult } + * + */ + public EnumValutesResponse.EnumValutesResult createEnumValutesResponseEnumValutesResult() { + return new EnumValutesResponse.EnumValutesResult(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult } + * + */ + public SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult createSwapInfoSellUSDXMLResponseSwapInfoSellUSDXMLResult() { + return new SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult(); + } + + /** + * Create an instance of {@link DragMetDynamicResponse.DragMetDynamicResult } + * + */ + public DragMetDynamicResponse.DragMetDynamicResult createDragMetDynamicResponseDragMetDynamicResult() { + return new DragMetDynamicResponse.DragMetDynamicResult(); + } + + /** + * Create an instance of {@link XVolXMLResponse.XVolXMLResult } + * + */ + public XVolXMLResponse.XVolXMLResult createXVolXMLResponseXVolXMLResult() { + return new XVolXMLResponse.XVolXMLResult(); + } + + /** + * Create an instance of {@link Bauction } + * + */ + public Bauction createBauction() { + return new Bauction(); + } + + /** + * Create an instance of {@link MainInfoXMLResponse.MainInfoXMLResult } + * + */ + public MainInfoXMLResponse.MainInfoXMLResult createMainInfoXMLResponseMainInfoXMLResult() { + return new MainInfoXMLResponse.MainInfoXMLResult(); + } + + /** + * Create an instance of {@link BauctionXML } + * + */ + public BauctionXML createBauctionXML() { + return new BauctionXML(); + } + + /** + * Create an instance of {@link EnumValutesXMLResponse.EnumValutesXMLResult } + * + */ + public EnumValutesXMLResponse.EnumValutesXMLResult createEnumValutesXMLResponseEnumValutesXMLResult() { + return new EnumValutesXMLResponse.EnumValutesXMLResult(); + } + + /** + * Create an instance of {@link GetCursDynamicXML } + * + */ + public GetCursDynamicXML createGetCursDynamicXML() { + return new GetCursDynamicXML(); + } + + /** + * Create an instance of {@link FixingBaseResponse.FixingBaseResult } + * + */ + public FixingBaseResponse.FixingBaseResult createFixingBaseResponseFixingBaseResult() { + return new FixingBaseResponse.FixingBaseResult(); + } + + /** + * Create an instance of {@link SwapDynamicXMLResponse.SwapDynamicXMLResult } + * + */ + public SwapDynamicXMLResponse.SwapDynamicXMLResult createSwapDynamicXMLResponseSwapDynamicXMLResult() { + return new SwapDynamicXMLResponse.SwapDynamicXMLResult(); + } + + /** + * Create an instance of {@link RepoDebt } + * + */ + public RepoDebt createRepoDebt() { + return new RepoDebt(); + } + + /** + * Create an instance of {@link EnumReutersValutes } + * + */ + public EnumReutersValutes createEnumReutersValutes() { + return new EnumReutersValutes(); + } + + /** + * Create an instance of {@link XVol } + * + */ + public XVol createXVol() { + return new XVol(); + } + + /** + * Create an instance of {@link GetCursDynamicXMLResponse.GetCursDynamicXMLResult } + * + */ + public GetCursDynamicXMLResponse.GetCursDynamicXMLResult createGetCursDynamicXMLResponseGetCursDynamicXMLResult() { + return new GetCursDynamicXMLResponse.GetCursDynamicXMLResult(); + } + + /** + * Create an instance of {@link GetLatestDateTimeSeld } + * + */ + public GetLatestDateTimeSeld createGetLatestDateTimeSeld() { + return new GetLatestDateTimeSeld(); + } + + /** + * Create an instance of {@link GetReutersCursOnDate } + * + */ + public GetReutersCursOnDate createGetReutersCursOnDate() { + return new GetReutersCursOnDate(); + } + + /** + * Create an instance of {@link MKR } + * + */ + public MKR createMKR() { + return new MKR(); + } + + /** + * Create an instance of {@link GetReutersCursDynamicResponse.GetReutersCursDynamicResult } + * + */ + public GetReutersCursDynamicResponse.GetReutersCursDynamicResult createGetReutersCursDynamicResponseGetReutersCursDynamicResult() { + return new GetReutersCursDynamicResponse.GetReutersCursDynamicResult(); + } + + /** + * Create an instance of {@link Saldo } + * + */ + public Saldo createSaldo() { + return new Saldo(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDResponse.SwapInfoSellUSDResult } + * + */ + public SwapInfoSellUSDResponse.SwapInfoSellUSDResult createSwapInfoSellUSDResponseSwapInfoSellUSDResult() { + return new SwapInfoSellUSDResponse.SwapInfoSellUSDResult(); + } + + /** + * Create an instance of {@link GetLatestDateTimeSeldResponse } + * + */ + public GetLatestDateTimeSeldResponse createGetLatestDateTimeSeldResponse() { + return new GetLatestDateTimeSeldResponse(); + } + + /** + * Create an instance of {@link ROISfixResponse.ROISfixResult } + * + */ + public ROISfixResponse.ROISfixResult createROISfixResponseROISfixResult() { + return new ROISfixResponse.ROISfixResult(); + } + + /** + * Create an instance of {@link RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult } + * + */ + public RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult createRepoDebtUSDXMLResponseRepoDebtUSDXMLResult() { + return new RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult(); + } + + /** + * Create an instance of {@link EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult } + * + */ + public EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult createEnumReutersValutesXMLResponseEnumReutersValutesXMLResult() { + return new EnumReutersValutesXMLResponse.EnumReutersValutesXMLResult(); + } + + /** + * Create an instance of {@link DepoDynamicResponse.DepoDynamicResult } + * + */ + public DepoDynamicResponse.DepoDynamicResult createDepoDynamicResponseDepoDynamicResult() { + return new DepoDynamicResponse.DepoDynamicResult(); + } + + /** + * Create an instance of {@link ValIntDayResponse.ValIntDayResult } + * + */ + public ValIntDayResponse.ValIntDayResult createValIntDayResponseValIntDayResult() { + return new ValIntDayResponse.ValIntDayResult(); + } + + /** + * Create an instance of {@link GetReutersCursOnDateXML } + * + */ + public GetReutersCursOnDateXML createGetReutersCursOnDateXML() { + return new GetReutersCursOnDateXML(); + } + + /** + * Create an instance of {@link BiCurBase } + * + */ + public BiCurBase createBiCurBase() { + return new BiCurBase(); + } + + /** + * Create an instance of {@link Ruonia } + * + */ + public Ruonia createRuonia() { + return new Ruonia(); + } + + /** + * Create an instance of {@link SwapDayTotalXML } + * + */ + public SwapDayTotalXML createSwapDayTotalXML() { + return new SwapDayTotalXML(); + } + + /** + * Create an instance of {@link GetLatestDateResponse } + * + */ + public GetLatestDateResponse createGetLatestDateResponse() { + return new GetLatestDateResponse(); + } + + /** + * Create an instance of {@link XVolXML } + * + */ + public XVolXML createXVolXML() { + return new XVolXML(); + } + + /** + * Create an instance of {@link RepoDebtResponse.RepoDebtResult } + * + */ + public RepoDebtResponse.RepoDebtResult createRepoDebtResponseRepoDebtResult() { + return new RepoDebtResponse.RepoDebtResult(); + } + + /** + * Create an instance of {@link GetSeldCursOnDateXML } + * + */ + public GetSeldCursOnDateXML createGetSeldCursOnDateXML() { + return new GetSeldCursOnDateXML(); + } + + /** + * Create an instance of {@link FixingBaseXML } + * + */ + public FixingBaseXML createFixingBaseXML() { + return new FixingBaseXML(); + } + + /** + * Create an instance of {@link XVolResponse.XVolResult } + * + */ + public XVolResponse.XVolResult createXVolResponseXVolResult() { + return new XVolResponse.XVolResult(); + } + + /** + * Create an instance of {@link DV } + * + */ + public DV createDV() { + return new DV(); + } + + /** + * Create an instance of {@link DepoDynamicXML } + * + */ + public DepoDynamicXML createDepoDynamicXML() { + return new DepoDynamicXML(); + } + + /** + * Create an instance of {@link EnumReutersValutesXML } + * + */ + public EnumReutersValutesXML createEnumReutersValutesXML() { + return new EnumReutersValutesXML(); + } + + /** + * Create an instance of {@link DVXMLResponse.DVXMLResult } + * + */ + public DVXMLResponse.DVXMLResult createDVXMLResponseDVXMLResult() { + return new DVXMLResponse.DVXMLResult(); + } + + /** + * Create an instance of {@link GetLatestDateSeld } + * + */ + public GetLatestDateSeld createGetLatestDateSeld() { + return new GetLatestDateSeld(); + } + + /** + * Create an instance of {@link GetLatestDateSeldResponse } + * + */ + public GetLatestDateSeldResponse createGetLatestDateSeldResponse() { + return new GetLatestDateSeldResponse(); + } + + /** + * Create an instance of {@link SwapDynamic } + * + */ + public SwapDynamic createSwapDynamic() { + return new SwapDynamic(); + } + + /** + * Create an instance of {@link DepoDynamic } + * + */ + public DepoDynamic createDepoDynamic() { + return new DepoDynamic(); + } + + /** + * Create an instance of {@link OvernightResponse.OvernightResult } + * + */ + public OvernightResponse.OvernightResult createOvernightResponseOvernightResult() { + return new OvernightResponse.OvernightResult(); + } + + /** + * Create an instance of {@link SwapDynamicXML } + * + */ + public SwapDynamicXML createSwapDynamicXML() { + return new SwapDynamicXML(); + } + + /** + * Create an instance of {@link SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult } + * + */ + public SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult createSwapMonthTotalXMLResponseSwapMonthTotalXMLResult() { + return new SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult(); + } + + /** + * Create an instance of {@link FixingBase } + * + */ + public FixingBase createFixingBase() { + return new FixingBase(); + } + + /** + * Create an instance of {@link OstatDepo } + * + */ + public OstatDepo createOstatDepo() { + return new OstatDepo(); + } + + /** + * Create an instance of {@link GetCursDynamicResponse.GetCursDynamicResult } + * + */ + public GetCursDynamicResponse.GetCursDynamicResult createGetCursDynamicResponseGetCursDynamicResult() { + return new GetCursDynamicResponse.GetCursDynamicResult(); + } + + /** + * Create an instance of {@link AllDataInfoXML } + * + */ + public AllDataInfoXML createAllDataInfoXML() { + return new AllDataInfoXML(); + } + + /** + * Create an instance of {@link DragMetDynamic } + * + */ + public DragMetDynamic createDragMetDynamic() { + return new DragMetDynamic(); + } + + /** + * Create an instance of {@link BiCurBacketXMLResponse.BiCurBacketXMLResult } + * + */ + public BiCurBacketXMLResponse.BiCurBacketXMLResult createBiCurBacketXMLResponseBiCurBacketXMLResult() { + return new BiCurBacketXMLResponse.BiCurBacketXMLResult(); + } + + /** + * Create an instance of {@link AllDataInfoXMLResponse.AllDataInfoXMLResult } + * + */ + public AllDataInfoXMLResponse.AllDataInfoXMLResult createAllDataInfoXMLResponseAllDataInfoXMLResult() { + return new AllDataInfoXMLResponse.AllDataInfoXMLResult(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult } + * + */ + public SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult createSwapInfoSellUSDVolXMLResponseSwapInfoSellUSDVolXMLResult() { + return new SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult(); + } + + /** + * Create an instance of {@link GetSeldCursOnDateResponse.GetSeldCursOnDateResult } + * + */ + public GetSeldCursOnDateResponse.GetSeldCursOnDateResult createGetSeldCursOnDateResponseGetSeldCursOnDateResult() { + return new GetSeldCursOnDateResponse.GetSeldCursOnDateResult(); + } + + /** + * Create an instance of {@link BauctionXMLResponse.BauctionXMLResult } + * + */ + public BauctionXMLResponse.BauctionXMLResult createBauctionXMLResponseBauctionXMLResult() { + return new BauctionXMLResponse.BauctionXMLResult(); + } + + /** + * Create an instance of {@link Mrrf } + * + */ + public Mrrf createMrrf() { + return new Mrrf(); + } + + /** + * Create an instance of {@link RuoniaResponse.RuoniaResult } + * + */ + public RuoniaResponse.RuoniaResult createRuoniaResponseRuoniaResult() { + return new RuoniaResponse.RuoniaResult(); + } + + /** + * Create an instance of {@link EnumValutes } + * + */ + public EnumValutes createEnumValutes() { + return new EnumValutes(); + } + + /** + * Create an instance of {@link OstatDynamicXML } + * + */ + public OstatDynamicXML createOstatDynamicXML() { + return new OstatDynamicXML(); + } + + /** + * Create an instance of {@link MKRXML } + * + */ + public MKRXML createMKRXML() { + return new MKRXML(); + } + + /** + * Create an instance of {@link SaldoXML } + * + */ + public SaldoXML createSaldoXML() { + return new SaldoXML(); + } + + /** + * Create an instance of {@link OstatDepoXMLResponse.OstatDepoXMLResult } + * + */ + public OstatDepoXMLResponse.OstatDepoXMLResult createOstatDepoXMLResponseOstatDepoXMLResult() { + return new OstatDepoXMLResponse.OstatDepoXMLResult(); + } + + /** + * Create an instance of {@link OstatDynamicResponse.OstatDynamicResult } + * + */ + public OstatDynamicResponse.OstatDynamicResult createOstatDynamicResponseOstatDynamicResult() { + return new OstatDynamicResponse.OstatDynamicResult(); + } + + /** + * Create an instance of {@link BiCurBacketResponse.BiCurBacketResult } + * + */ + public BiCurBacketResponse.BiCurBacketResult createBiCurBacketResponseBiCurBacketResult() { + return new BiCurBacketResponse.BiCurBacketResult(); + } + + /** + * Create an instance of {@link RepoDebtXML } + * + */ + public RepoDebtXML createRepoDebtXML() { + return new RepoDebtXML(); + } + + /** + * Create an instance of {@link GetLatestReutersDateTimeResponse } + * + */ + public GetLatestReutersDateTimeResponse createGetLatestReutersDateTimeResponse() { + return new GetLatestReutersDateTimeResponse(); + } + + /** + * Create an instance of {@link NewsInfo } + * + */ + public NewsInfo createNewsInfo() { + return new NewsInfo(); + } + + /** + * Create an instance of {@link MrrfXML } + * + */ + public MrrfXML createMrrfXML() { + return new MrrfXML(); + } + + /** + * Create an instance of {@link OstatDynamicXMLResponse.OstatDynamicXMLResult } + * + */ + public OstatDynamicXMLResponse.OstatDynamicXMLResult createOstatDynamicXMLResponseOstatDynamicXMLResult() { + return new OstatDynamicXMLResponse.OstatDynamicXMLResult(); + } + + /** + * Create an instance of {@link GetLatestReutersDateTime } + * + */ + public GetLatestReutersDateTime createGetLatestReutersDateTime() { + return new GetLatestReutersDateTime(); + } + + /** + * Create an instance of {@link DragMetDynamicXMLResponse.DragMetDynamicXMLResult } + * + */ + public DragMetDynamicXMLResponse.DragMetDynamicXMLResult createDragMetDynamicXMLResponseDragMetDynamicXMLResult() { + return new DragMetDynamicXMLResponse.DragMetDynamicXMLResult(); + } + + /** + * Create an instance of {@link OstatDepoXML } + * + */ + public OstatDepoXML createOstatDepoXML() { + return new OstatDepoXML(); + } + + /** + * Create an instance of {@link GetReutersCursOnDateResponse.GetReutersCursOnDateResult } + * + */ + public GetReutersCursOnDateResponse.GetReutersCursOnDateResult createGetReutersCursOnDateResponseGetReutersCursOnDateResult() { + return new GetReutersCursOnDateResponse.GetReutersCursOnDateResult(); + } + + /** + * Create an instance of {@link RepoDebtUSDResponse.RepoDebtUSDResult } + * + */ + public RepoDebtUSDResponse.RepoDebtUSDResult createRepoDebtUSDResponseRepoDebtUSDResult() { + return new RepoDebtUSDResponse.RepoDebtUSDResult(); + } + + /** + * Create an instance of {@link DVXML } + * + */ + public DVXML createDVXML() { + return new DVXML(); + } + + /** + * Create an instance of {@link NewsInfoResponse.NewsInfoResult } + * + */ + public NewsInfoResponse.NewsInfoResult createNewsInfoResponseNewsInfoResult() { + return new NewsInfoResponse.NewsInfoResult(); + } + + /** + * Create an instance of {@link BauctionResponse.BauctionResult } + * + */ + public BauctionResponse.BauctionResult createBauctionResponseBauctionResult() { + return new BauctionResponse.BauctionResult(); + } + + /** + * Create an instance of {@link BiCurBaseXMLResponse.BiCurBaseXMLResult } + * + */ + public BiCurBaseXMLResponse.BiCurBaseXMLResult createBiCurBaseXMLResponseBiCurBaseXMLResult() { + return new BiCurBaseXMLResponse.BiCurBaseXMLResult(); + } + + /** + * Create an instance of {@link ValIntDay } + * + */ + public ValIntDay createValIntDay() { + return new ValIntDay(); + } + + /** + * Create an instance of {@link GetLatestDate } + * + */ + public GetLatestDate createGetLatestDate() { + return new GetLatestDate(); + } + + /** + * Create an instance of {@link RuoniaXML } + * + */ + public RuoniaXML createRuoniaXML() { + return new RuoniaXML(); + } + + /** + * Create an instance of {@link ROISfixXMLResponse.ROISfixXMLResult } + * + */ + public ROISfixXMLResponse.ROISfixXMLResult createROISfixXMLResponseROISfixXMLResult() { + return new ROISfixXMLResponse.ROISfixXMLResult(); + } + + /** + * Create an instance of {@link OvernightXMLResponse.OvernightXMLResult } + * + */ + public OvernightXMLResponse.OvernightXMLResult createOvernightXMLResponseOvernightXMLResult() { + return new OvernightXMLResponse.OvernightXMLResult(); + } + + /** + * Create an instance of {@link NewsInfoXMLResponse.NewsInfoXMLResult } + * + */ + public NewsInfoXMLResponse.NewsInfoXMLResult createNewsInfoXMLResponseNewsInfoXMLResult() { + return new NewsInfoXMLResponse.NewsInfoXMLResult(); + } + + /** + * Create an instance of {@link Mrrf7DXML } + * + */ + public Mrrf7DXML createMrrf7DXML() { + return new Mrrf7DXML(); + } + + /** + * Create an instance of {@link GetCursOnDateXML } + * + */ + public GetCursOnDateXML createGetCursOnDateXML() { + return new GetCursOnDateXML(); + } + + /** + * Create an instance of {@link SwapDayTotalResponse.SwapDayTotalResult } + * + */ + public SwapDayTotalResponse.SwapDayTotalResult createSwapDayTotalResponseSwapDayTotalResult() { + return new SwapDayTotalResponse.SwapDayTotalResult(); + } + + /** + * Create an instance of {@link RuoniaXMLResponse.RuoniaXMLResult } + * + */ + public RuoniaXMLResponse.RuoniaXMLResult createRuoniaXMLResponseRuoniaXMLResult() { + return new RuoniaXMLResponse.RuoniaXMLResult(); + } + + /** + * Create an instance of {@link NewsInfoXML } + * + */ + public NewsInfoXML createNewsInfoXML() { + return new NewsInfoXML(); + } + + /** + * Create an instance of {@link SwapDayTotal } + * + */ + public SwapDayTotal createSwapDayTotal() { + return new SwapDayTotal(); + } + + /** + * Create an instance of {@link CoinsBase } + * + */ + public CoinsBase createCoinsBase() { + return new CoinsBase(); + } + + /** + * Create an instance of {@link SwapMonthTotalResponse.SwapMonthTotalResult } + * + */ + public SwapMonthTotalResponse.SwapMonthTotalResult createSwapMonthTotalResponseSwapMonthTotalResult() { + return new SwapMonthTotalResponse.SwapMonthTotalResult(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult } + * + */ + public SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult createSwapInfoSellUSDVolResponseSwapInfoSellUSDVolResult() { + return new SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult(); + } + + /** + * Create an instance of {@link DVResponse.DVResult } + * + */ + public DVResponse.DVResult createDVResponseDVResult() { + return new DVResponse.DVResult(); + } + + /** + * Create an instance of {@link FixingBaseXMLResponse.FixingBaseXMLResult } + * + */ + public FixingBaseXMLResponse.FixingBaseXMLResult createFixingBaseXMLResponseFixingBaseXMLResult() { + return new FixingBaseXMLResponse.FixingBaseXMLResult(); + } + + /** + * Create an instance of {@link DepoDynamicXMLResponse.DepoDynamicXMLResult } + * + */ + public DepoDynamicXMLResponse.DepoDynamicXMLResult createDepoDynamicXMLResponseDepoDynamicXMLResult() { + return new DepoDynamicXMLResponse.DepoDynamicXMLResult(); + } + + /** + * Create an instance of {@link GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult } + * + */ + public GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult createGetSeldCursOnDateXMLResponseGetSeldCursOnDateXMLResult() { + return new GetSeldCursOnDateXMLResponse.GetSeldCursOnDateXMLResult(); + } + + /** + * Create an instance of {@link SwapMonthTotal } + * + */ + public SwapMonthTotal createSwapMonthTotal() { + return new SwapMonthTotal(); + } + + /** + * Create an instance of {@link SwapMonthTotalXML } + * + */ + public SwapMonthTotalXML createSwapMonthTotalXML() { + return new SwapMonthTotalXML(); + } + + /** + * Create an instance of {@link RepoDebtUSD } + * + */ + public RepoDebtUSD createRepoDebtUSD() { + return new RepoDebtUSD(); + } + + /** + * Create an instance of {@link GetCursDynamic } + * + */ + public GetCursDynamic createGetCursDynamic() { + return new GetCursDynamic(); + } + + /** + * Create an instance of {@link MainInfoXML } + * + */ + public MainInfoXML createMainInfoXML() { + return new MainInfoXML(); + } + + /** + * Create an instance of {@link BiCurBaseResponse.BiCurBaseResult } + * + */ + public BiCurBaseResponse.BiCurBaseResult createBiCurBaseResponseBiCurBaseResult() { + return new BiCurBaseResponse.BiCurBaseResult(); + } + + /** + * Create an instance of {@link SwapInfoSellUSDVol } + * + */ + public SwapInfoSellUSDVol createSwapInfoSellUSDVol() { + return new SwapInfoSellUSDVol(); + } + + /** + * Create an instance of {@link MKRXMLResponse.MKRXMLResult } + * + */ + public MKRXMLResponse.MKRXMLResult createMKRXMLResponseMKRXMLResult() { + return new MKRXMLResponse.MKRXMLResult(); + } + + /** + * Create an instance of {@link OstatDepoResponse.OstatDepoResult } + * + */ + public OstatDepoResponse.OstatDepoResult createOstatDepoResponseOstatDepoResult() { + return new OstatDepoResponse.OstatDepoResult(); + } + + /** + * Create an instance of {@link GetCursOnDateXMLResponse.GetCursOnDateXMLResult } + * + */ + public GetCursOnDateXMLResponse.GetCursOnDateXMLResult createGetCursOnDateXMLResponseGetCursOnDateXMLResult() { + return new GetCursOnDateXMLResponse.GetCursOnDateXMLResult(); + } + + /** + * Create an instance of {@link BiCurBacketXML } + * + */ + public BiCurBacketXML createBiCurBacketXML() { + return new BiCurBacketXML(); + } + + /** + * Create an instance of {@link MrrfXMLResponse.MrrfXMLResult } + * + */ + public MrrfXMLResponse.MrrfXMLResult createMrrfXMLResponseMrrfXMLResult() { + return new MrrfXMLResponse.MrrfXMLResult(); + } + + /** + * Create an instance of {@link SwapInfoSellUSD } + * + */ + public SwapInfoSellUSD createSwapInfoSellUSD() { + return new SwapInfoSellUSD(); + } + + /** + * Create an instance of {@link MrrfResponse.MrrfResult } + * + */ + public MrrfResponse.MrrfResult createMrrfResponseMrrfResult() { + return new MrrfResponse.MrrfResult(); + } + +} diff --git a/src/main/java/ru/cbr/web/OmodInfoXML.java b/src/main/java/ru/cbr/web/OmodInfoXML.java new file mode 100644 index 0000000..ae61514 --- /dev/null +++ b/src/main/java/ru/cbr/web/OmodInfoXML.java @@ -0,0 +1,32 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "OmodInfoXML") +public class OmodInfoXML { + + +} diff --git a/src/main/java/ru/cbr/web/OmodInfoXMLResponse.java b/src/main/java/ru/cbr/web/OmodInfoXMLResponse.java new file mode 100644 index 0000000..bc89495 --- /dev/null +++ b/src/main/java/ru/cbr/web/OmodInfoXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OmodInfoXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "omodInfoXMLResult" +}) +@XmlRootElement(name = "OmodInfoXMLResponse") +public class OmodInfoXMLResponse { + + @XmlElement(name = "OmodInfoXMLResult") + protected OmodInfoXMLResponse.OmodInfoXMLResult omodInfoXMLResult; + + /** + * Gets the value of the omodInfoXMLResult property. + * + * @return + * possible object is + * {@link OmodInfoXMLResponse.OmodInfoXMLResult } + * + */ + public OmodInfoXMLResponse.OmodInfoXMLResult getOmodInfoXMLResult() { + return omodInfoXMLResult; + } + + /** + * Sets the value of the omodInfoXMLResult property. + * + * @param value + * allowed object is + * {@link OmodInfoXMLResponse.OmodInfoXMLResult } + * + */ + public void setOmodInfoXMLResult(OmodInfoXMLResponse.OmodInfoXMLResult value) { + this.omodInfoXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class OmodInfoXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDepo.java b/src/main/java/ru/cbr/web/OstatDepo.java new file mode 100644 index 0000000..c11e578 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDepo.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "OstatDepo") +public class OstatDepo { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDepoResponse.java b/src/main/java/ru/cbr/web/OstatDepoResponse.java new file mode 100644 index 0000000..e9b5c61 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDepoResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OstatDepoResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ostatDepoResult" +}) +@XmlRootElement(name = "OstatDepoResponse") +public class OstatDepoResponse { + + @XmlElement(name = "OstatDepoResult") + protected OstatDepoResponse.OstatDepoResult ostatDepoResult; + + /** + * Gets the value of the ostatDepoResult property. + * + * @return + * possible object is + * {@link OstatDepoResponse.OstatDepoResult } + * + */ + public OstatDepoResponse.OstatDepoResult getOstatDepoResult() { + return ostatDepoResult; + } + + /** + * Sets the value of the ostatDepoResult property. + * + * @param value + * allowed object is + * {@link OstatDepoResponse.OstatDepoResult } + * + */ + public void setOstatDepoResult(OstatDepoResponse.OstatDepoResult value) { + this.ostatDepoResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class OstatDepoResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDepoXML.java b/src/main/java/ru/cbr/web/OstatDepoXML.java new file mode 100644 index 0000000..34edfb4 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDepoXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "OstatDepoXML") +public class OstatDepoXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDepoXMLResponse.java b/src/main/java/ru/cbr/web/OstatDepoXMLResponse.java new file mode 100644 index 0000000..1536b64 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDepoXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OstatDepoXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ostatDepoXMLResult" +}) +@XmlRootElement(name = "OstatDepoXMLResponse") +public class OstatDepoXMLResponse { + + @XmlElement(name = "OstatDepoXMLResult") + protected OstatDepoXMLResponse.OstatDepoXMLResult ostatDepoXMLResult; + + /** + * Gets the value of the ostatDepoXMLResult property. + * + * @return + * possible object is + * {@link OstatDepoXMLResponse.OstatDepoXMLResult } + * + */ + public OstatDepoXMLResponse.OstatDepoXMLResult getOstatDepoXMLResult() { + return ostatDepoXMLResult; + } + + /** + * Sets the value of the ostatDepoXMLResult property. + * + * @param value + * allowed object is + * {@link OstatDepoXMLResponse.OstatDepoXMLResult } + * + */ + public void setOstatDepoXMLResult(OstatDepoXMLResponse.OstatDepoXMLResult value) { + this.ostatDepoXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class OstatDepoXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDynamic.java b/src/main/java/ru/cbr/web/OstatDynamic.java new file mode 100644 index 0000000..af50fe8 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDynamic.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "OstatDynamic") +public class OstatDynamic { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDynamicResponse.java b/src/main/java/ru/cbr/web/OstatDynamicResponse.java new file mode 100644 index 0000000..10fb8dc --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDynamicResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OstatDynamicResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ostatDynamicResult" +}) +@XmlRootElement(name = "OstatDynamicResponse") +public class OstatDynamicResponse { + + @XmlElement(name = "OstatDynamicResult") + protected OstatDynamicResponse.OstatDynamicResult ostatDynamicResult; + + /** + * Gets the value of the ostatDynamicResult property. + * + * @return + * possible object is + * {@link OstatDynamicResponse.OstatDynamicResult } + * + */ + public OstatDynamicResponse.OstatDynamicResult getOstatDynamicResult() { + return ostatDynamicResult; + } + + /** + * Sets the value of the ostatDynamicResult property. + * + * @param value + * allowed object is + * {@link OstatDynamicResponse.OstatDynamicResult } + * + */ + public void setOstatDynamicResult(OstatDynamicResponse.OstatDynamicResult value) { + this.ostatDynamicResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class OstatDynamicResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDynamicXML.java b/src/main/java/ru/cbr/web/OstatDynamicXML.java new file mode 100644 index 0000000..b0d3ad6 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDynamicXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "OstatDynamicXML") +public class OstatDynamicXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/OstatDynamicXMLResponse.java b/src/main/java/ru/cbr/web/OstatDynamicXMLResponse.java new file mode 100644 index 0000000..ff916f1 --- /dev/null +++ b/src/main/java/ru/cbr/web/OstatDynamicXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OstatDynamicXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ostatDynamicXMLResult" +}) +@XmlRootElement(name = "OstatDynamicXMLResponse") +public class OstatDynamicXMLResponse { + + @XmlElement(name = "OstatDynamicXMLResult") + protected OstatDynamicXMLResponse.OstatDynamicXMLResult ostatDynamicXMLResult; + + /** + * Gets the value of the ostatDynamicXMLResult property. + * + * @return + * possible object is + * {@link OstatDynamicXMLResponse.OstatDynamicXMLResult } + * + */ + public OstatDynamicXMLResponse.OstatDynamicXMLResult getOstatDynamicXMLResult() { + return ostatDynamicXMLResult; + } + + /** + * Sets the value of the ostatDynamicXMLResult property. + * + * @param value + * allowed object is + * {@link OstatDynamicXMLResponse.OstatDynamicXMLResult } + * + */ + public void setOstatDynamicXMLResult(OstatDynamicXMLResponse.OstatDynamicXMLResult value) { + this.ostatDynamicXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class OstatDynamicXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/Overnight.java b/src/main/java/ru/cbr/web/Overnight.java new file mode 100644 index 0000000..1b6640b --- /dev/null +++ b/src/main/java/ru/cbr/web/Overnight.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Overnight") +public class Overnight { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/OvernightResponse.java b/src/main/java/ru/cbr/web/OvernightResponse.java new file mode 100644 index 0000000..f73ed31 --- /dev/null +++ b/src/main/java/ru/cbr/web/OvernightResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OvernightResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "overnightResult" +}) +@XmlRootElement(name = "OvernightResponse") +public class OvernightResponse { + + @XmlElement(name = "OvernightResult") + protected OvernightResponse.OvernightResult overnightResult; + + /** + * Gets the value of the overnightResult property. + * + * @return + * possible object is + * {@link OvernightResponse.OvernightResult } + * + */ + public OvernightResponse.OvernightResult getOvernightResult() { + return overnightResult; + } + + /** + * Sets the value of the overnightResult property. + * + * @param value + * allowed object is + * {@link OvernightResponse.OvernightResult } + * + */ + public void setOvernightResult(OvernightResponse.OvernightResult value) { + this.overnightResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class OvernightResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/OvernightXML.java b/src/main/java/ru/cbr/web/OvernightXML.java new file mode 100644 index 0000000..b2701ef --- /dev/null +++ b/src/main/java/ru/cbr/web/OvernightXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "OvernightXML") +public class OvernightXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/OvernightXMLResponse.java b/src/main/java/ru/cbr/web/OvernightXMLResponse.java new file mode 100644 index 0000000..fe77ba1 --- /dev/null +++ b/src/main/java/ru/cbr/web/OvernightXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OvernightXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "overnightXMLResult" +}) +@XmlRootElement(name = "OvernightXMLResponse") +public class OvernightXMLResponse { + + @XmlElement(name = "OvernightXMLResult") + protected OvernightXMLResponse.OvernightXMLResult overnightXMLResult; + + /** + * Gets the value of the overnightXMLResult property. + * + * @return + * possible object is + * {@link OvernightXMLResponse.OvernightXMLResult } + * + */ + public OvernightXMLResponse.OvernightXMLResult getOvernightXMLResult() { + return overnightXMLResult; + } + + /** + * Sets the value of the overnightXMLResult property. + * + * @param value + * allowed object is + * {@link OvernightXMLResponse.OvernightXMLResult } + * + */ + public void setOvernightXMLResult(OvernightXMLResponse.OvernightXMLResult value) { + this.overnightXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class OvernightXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/ROISfix.java b/src/main/java/ru/cbr/web/ROISfix.java new file mode 100644 index 0000000..7e96e51 --- /dev/null +++ b/src/main/java/ru/cbr/web/ROISfix.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "ROISfix") +public class ROISfix { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/ROISfixResponse.java b/src/main/java/ru/cbr/web/ROISfixResponse.java new file mode 100644 index 0000000..b6e5767 --- /dev/null +++ b/src/main/java/ru/cbr/web/ROISfixResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ROISfixResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "roiSfixResult" +}) +@XmlRootElement(name = "ROISfixResponse") +public class ROISfixResponse { + + @XmlElement(name = "ROISfixResult") + protected ROISfixResponse.ROISfixResult roiSfixResult; + + /** + * Gets the value of the roiSfixResult property. + * + * @return + * possible object is + * {@link ROISfixResponse.ROISfixResult } + * + */ + public ROISfixResponse.ROISfixResult getROISfixResult() { + return roiSfixResult; + } + + /** + * Sets the value of the roiSfixResult property. + * + * @param value + * allowed object is + * {@link ROISfixResponse.ROISfixResult } + * + */ + public void setROISfixResult(ROISfixResponse.ROISfixResult value) { + this.roiSfixResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class ROISfixResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/ROISfixXML.java b/src/main/java/ru/cbr/web/ROISfixXML.java new file mode 100644 index 0000000..1f7c0f0 --- /dev/null +++ b/src/main/java/ru/cbr/web/ROISfixXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "ROISfixXML") +public class ROISfixXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/ROISfixXMLResponse.java b/src/main/java/ru/cbr/web/ROISfixXMLResponse.java new file mode 100644 index 0000000..d75e15b --- /dev/null +++ b/src/main/java/ru/cbr/web/ROISfixXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ROISfixXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "roiSfixXMLResult" +}) +@XmlRootElement(name = "ROISfixXMLResponse") +public class ROISfixXMLResponse { + + @XmlElement(name = "ROISfixXMLResult") + protected ROISfixXMLResponse.ROISfixXMLResult roiSfixXMLResult; + + /** + * Gets the value of the roiSfixXMLResult property. + * + * @return + * possible object is + * {@link ROISfixXMLResponse.ROISfixXMLResult } + * + */ + public ROISfixXMLResponse.ROISfixXMLResult getROISfixXMLResult() { + return roiSfixXMLResult; + } + + /** + * Sets the value of the roiSfixXMLResult property. + * + * @param value + * allowed object is + * {@link ROISfixXMLResponse.ROISfixXMLResult } + * + */ + public void setROISfixXMLResult(ROISfixXMLResponse.ROISfixXMLResult value) { + this.roiSfixXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class ROISfixXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebt.java b/src/main/java/ru/cbr/web/RepoDebt.java new file mode 100644 index 0000000..1058d3e --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebt.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Repo_debt") +public class RepoDebt { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtResponse.java b/src/main/java/ru/cbr/web/RepoDebtResponse.java new file mode 100644 index 0000000..6fc7ae2 --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Repo_debtResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "repoDebtResult" +}) +@XmlRootElement(name = "Repo_debtResponse") +public class RepoDebtResponse { + + @XmlElement(name = "Repo_debtResult") + protected RepoDebtResponse.RepoDebtResult repoDebtResult; + + /** + * Gets the value of the repoDebtResult property. + * + * @return + * possible object is + * {@link RepoDebtResponse.RepoDebtResult } + * + */ + public RepoDebtResponse.RepoDebtResult getRepoDebtResult() { + return repoDebtResult; + } + + /** + * Sets the value of the repoDebtResult property. + * + * @param value + * allowed object is + * {@link RepoDebtResponse.RepoDebtResult } + * + */ + public void setRepoDebtResult(RepoDebtResponse.RepoDebtResult value) { + this.repoDebtResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class RepoDebtResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtUSD.java b/src/main/java/ru/cbr/web/RepoDebtUSD.java new file mode 100644 index 0000000..9a7407b --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtUSD.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "RepoDebtUSD") +public class RepoDebtUSD { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtUSDResponse.java b/src/main/java/ru/cbr/web/RepoDebtUSDResponse.java new file mode 100644 index 0000000..66f4151 --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtUSDResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="RepoDebtUSDResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "repoDebtUSDResult" +}) +@XmlRootElement(name = "RepoDebtUSDResponse") +public class RepoDebtUSDResponse { + + @XmlElement(name = "RepoDebtUSDResult") + protected RepoDebtUSDResponse.RepoDebtUSDResult repoDebtUSDResult; + + /** + * Gets the value of the repoDebtUSDResult property. + * + * @return + * possible object is + * {@link RepoDebtUSDResponse.RepoDebtUSDResult } + * + */ + public RepoDebtUSDResponse.RepoDebtUSDResult getRepoDebtUSDResult() { + return repoDebtUSDResult; + } + + /** + * Sets the value of the repoDebtUSDResult property. + * + * @param value + * allowed object is + * {@link RepoDebtUSDResponse.RepoDebtUSDResult } + * + */ + public void setRepoDebtUSDResult(RepoDebtUSDResponse.RepoDebtUSDResult value) { + this.repoDebtUSDResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class RepoDebtUSDResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtUSDXML.java b/src/main/java/ru/cbr/web/RepoDebtUSDXML.java new file mode 100644 index 0000000..8b7321c --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtUSDXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "RepoDebtUSDXML") +public class RepoDebtUSDXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtUSDXMLResponse.java b/src/main/java/ru/cbr/web/RepoDebtUSDXMLResponse.java new file mode 100644 index 0000000..42e6c70 --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtUSDXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="RepoDebtUSDXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "repoDebtUSDXMLResult" +}) +@XmlRootElement(name = "RepoDebtUSDXMLResponse") +public class RepoDebtUSDXMLResponse { + + @XmlElement(name = "RepoDebtUSDXMLResult") + protected RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult repoDebtUSDXMLResult; + + /** + * Gets the value of the repoDebtUSDXMLResult property. + * + * @return + * possible object is + * {@link RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult } + * + */ + public RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult getRepoDebtUSDXMLResult() { + return repoDebtUSDXMLResult; + } + + /** + * Sets the value of the repoDebtUSDXMLResult property. + * + * @param value + * allowed object is + * {@link RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult } + * + */ + public void setRepoDebtUSDXMLResult(RepoDebtUSDXMLResponse.RepoDebtUSDXMLResult value) { + this.repoDebtUSDXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class RepoDebtUSDXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtXML.java b/src/main/java/ru/cbr/web/RepoDebtXML.java new file mode 100644 index 0000000..12ebbf1 --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Repo_debtXML") +public class RepoDebtXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/RepoDebtXMLResponse.java b/src/main/java/ru/cbr/web/RepoDebtXMLResponse.java new file mode 100644 index 0000000..8bfc6a0 --- /dev/null +++ b/src/main/java/ru/cbr/web/RepoDebtXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Repo_debtXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "repoDebtXMLResult" +}) +@XmlRootElement(name = "Repo_debtXMLResponse") +public class RepoDebtXMLResponse { + + @XmlElement(name = "Repo_debtXMLResult") + protected RepoDebtXMLResponse.RepoDebtXMLResult repoDebtXMLResult; + + /** + * Gets the value of the repoDebtXMLResult property. + * + * @return + * possible object is + * {@link RepoDebtXMLResponse.RepoDebtXMLResult } + * + */ + public RepoDebtXMLResponse.RepoDebtXMLResult getRepoDebtXMLResult() { + return repoDebtXMLResult; + } + + /** + * Sets the value of the repoDebtXMLResult property. + * + * @param value + * allowed object is + * {@link RepoDebtXMLResponse.RepoDebtXMLResult } + * + */ + public void setRepoDebtXMLResult(RepoDebtXMLResponse.RepoDebtXMLResult value) { + this.repoDebtXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class RepoDebtXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/Ruonia.java b/src/main/java/ru/cbr/web/Ruonia.java new file mode 100644 index 0000000..c673abb --- /dev/null +++ b/src/main/java/ru/cbr/web/Ruonia.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Ruonia") +public class Ruonia { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/RuoniaResponse.java b/src/main/java/ru/cbr/web/RuoniaResponse.java new file mode 100644 index 0000000..8bbee15 --- /dev/null +++ b/src/main/java/ru/cbr/web/RuoniaResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="RuoniaResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ruoniaResult" +}) +@XmlRootElement(name = "RuoniaResponse") +public class RuoniaResponse { + + @XmlElement(name = "RuoniaResult") + protected RuoniaResponse.RuoniaResult ruoniaResult; + + /** + * Gets the value of the ruoniaResult property. + * + * @return + * possible object is + * {@link RuoniaResponse.RuoniaResult } + * + */ + public RuoniaResponse.RuoniaResult getRuoniaResult() { + return ruoniaResult; + } + + /** + * Sets the value of the ruoniaResult property. + * + * @param value + * allowed object is + * {@link RuoniaResponse.RuoniaResult } + * + */ + public void setRuoniaResult(RuoniaResponse.RuoniaResult value) { + this.ruoniaResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class RuoniaResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/RuoniaXML.java b/src/main/java/ru/cbr/web/RuoniaXML.java new file mode 100644 index 0000000..d919138 --- /dev/null +++ b/src/main/java/ru/cbr/web/RuoniaXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "RuoniaXML") +public class RuoniaXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/RuoniaXMLResponse.java b/src/main/java/ru/cbr/web/RuoniaXMLResponse.java new file mode 100644 index 0000000..2c27e37 --- /dev/null +++ b/src/main/java/ru/cbr/web/RuoniaXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="RuoniaXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ruoniaXMLResult" +}) +@XmlRootElement(name = "RuoniaXMLResponse") +public class RuoniaXMLResponse { + + @XmlElement(name = "RuoniaXMLResult") + protected RuoniaXMLResponse.RuoniaXMLResult ruoniaXMLResult; + + /** + * Gets the value of the ruoniaXMLResult property. + * + * @return + * possible object is + * {@link RuoniaXMLResponse.RuoniaXMLResult } + * + */ + public RuoniaXMLResponse.RuoniaXMLResult getRuoniaXMLResult() { + return ruoniaXMLResult; + } + + /** + * Sets the value of the ruoniaXMLResult property. + * + * @param value + * allowed object is + * {@link RuoniaXMLResponse.RuoniaXMLResult } + * + */ + public void setRuoniaXMLResult(RuoniaXMLResponse.RuoniaXMLResult value) { + this.ruoniaXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class RuoniaXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/Saldo.java b/src/main/java/ru/cbr/web/Saldo.java new file mode 100644 index 0000000..4c170eb --- /dev/null +++ b/src/main/java/ru/cbr/web/Saldo.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "Saldo") +public class Saldo { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SaldoResponse.java b/src/main/java/ru/cbr/web/SaldoResponse.java new file mode 100644 index 0000000..b2a62a6 --- /dev/null +++ b/src/main/java/ru/cbr/web/SaldoResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SaldoResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "saldoResult" +}) +@XmlRootElement(name = "SaldoResponse") +public class SaldoResponse { + + @XmlElement(name = "SaldoResult") + protected SaldoResponse.SaldoResult saldoResult; + + /** + * Gets the value of the saldoResult property. + * + * @return + * possible object is + * {@link SaldoResponse.SaldoResult } + * + */ + public SaldoResponse.SaldoResult getSaldoResult() { + return saldoResult; + } + + /** + * Sets the value of the saldoResult property. + * + * @param value + * allowed object is + * {@link SaldoResponse.SaldoResult } + * + */ + public void setSaldoResult(SaldoResponse.SaldoResult value) { + this.saldoResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class SaldoResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SaldoXML.java b/src/main/java/ru/cbr/web/SaldoXML.java new file mode 100644 index 0000000..fb78031 --- /dev/null +++ b/src/main/java/ru/cbr/web/SaldoXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SaldoXML") +public class SaldoXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SaldoXMLResponse.java b/src/main/java/ru/cbr/web/SaldoXMLResponse.java new file mode 100644 index 0000000..5f56a30 --- /dev/null +++ b/src/main/java/ru/cbr/web/SaldoXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SaldoXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "saldoXMLResult" +}) +@XmlRootElement(name = "SaldoXMLResponse") +public class SaldoXMLResponse { + + @XmlElement(name = "SaldoXMLResult") + protected SaldoXMLResponse.SaldoXMLResult saldoXMLResult; + + /** + * Gets the value of the saldoXMLResult property. + * + * @return + * possible object is + * {@link SaldoXMLResponse.SaldoXMLResult } + * + */ + public SaldoXMLResponse.SaldoXMLResult getSaldoXMLResult() { + return saldoXMLResult; + } + + /** + * Sets the value of the saldoXMLResult property. + * + * @param value + * allowed object is + * {@link SaldoXMLResponse.SaldoXMLResult } + * + */ + public void setSaldoXMLResult(SaldoXMLResponse.SaldoXMLResult value) { + this.saldoXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class SaldoXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDayTotal.java b/src/main/java/ru/cbr/web/SwapDayTotal.java new file mode 100644 index 0000000..09ede99 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDayTotal.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapDayTotal") +public class SwapDayTotal { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDayTotalResponse.java b/src/main/java/ru/cbr/web/SwapDayTotalResponse.java new file mode 100644 index 0000000..f29fc13 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDayTotalResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapDayTotalResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapDayTotalResult" +}) +@XmlRootElement(name = "SwapDayTotalResponse") +public class SwapDayTotalResponse { + + @XmlElement(name = "SwapDayTotalResult") + protected SwapDayTotalResponse.SwapDayTotalResult swapDayTotalResult; + + /** + * Gets the value of the swapDayTotalResult property. + * + * @return + * possible object is + * {@link SwapDayTotalResponse.SwapDayTotalResult } + * + */ + public SwapDayTotalResponse.SwapDayTotalResult getSwapDayTotalResult() { + return swapDayTotalResult; + } + + /** + * Sets the value of the swapDayTotalResult property. + * + * @param value + * allowed object is + * {@link SwapDayTotalResponse.SwapDayTotalResult } + * + */ + public void setSwapDayTotalResult(SwapDayTotalResponse.SwapDayTotalResult value) { + this.swapDayTotalResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class SwapDayTotalResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDayTotalXML.java b/src/main/java/ru/cbr/web/SwapDayTotalXML.java new file mode 100644 index 0000000..5cfaa4f --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDayTotalXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapDayTotalXML") +public class SwapDayTotalXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDayTotalXMLResponse.java b/src/main/java/ru/cbr/web/SwapDayTotalXMLResponse.java new file mode 100644 index 0000000..2371fe8 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDayTotalXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapDayTotalXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapDayTotalXMLResult" +}) +@XmlRootElement(name = "SwapDayTotalXMLResponse") +public class SwapDayTotalXMLResponse { + + @XmlElement(name = "SwapDayTotalXMLResult") + protected SwapDayTotalXMLResponse.SwapDayTotalXMLResult swapDayTotalXMLResult; + + /** + * Gets the value of the swapDayTotalXMLResult property. + * + * @return + * possible object is + * {@link SwapDayTotalXMLResponse.SwapDayTotalXMLResult } + * + */ + public SwapDayTotalXMLResponse.SwapDayTotalXMLResult getSwapDayTotalXMLResult() { + return swapDayTotalXMLResult; + } + + /** + * Sets the value of the swapDayTotalXMLResult property. + * + * @param value + * allowed object is + * {@link SwapDayTotalXMLResponse.SwapDayTotalXMLResult } + * + */ + public void setSwapDayTotalXMLResult(SwapDayTotalXMLResponse.SwapDayTotalXMLResult value) { + this.swapDayTotalXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class SwapDayTotalXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDynamic.java b/src/main/java/ru/cbr/web/SwapDynamic.java new file mode 100644 index 0000000..49aac24 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDynamic.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapDynamic") +public class SwapDynamic { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDynamicResponse.java b/src/main/java/ru/cbr/web/SwapDynamicResponse.java new file mode 100644 index 0000000..8da5847 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDynamicResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapDynamicResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapDynamicResult" +}) +@XmlRootElement(name = "SwapDynamicResponse") +public class SwapDynamicResponse { + + @XmlElement(name = "SwapDynamicResult") + protected SwapDynamicResponse.SwapDynamicResult swapDynamicResult; + + /** + * Gets the value of the swapDynamicResult property. + * + * @return + * possible object is + * {@link SwapDynamicResponse.SwapDynamicResult } + * + */ + public SwapDynamicResponse.SwapDynamicResult getSwapDynamicResult() { + return swapDynamicResult; + } + + /** + * Sets the value of the swapDynamicResult property. + * + * @param value + * allowed object is + * {@link SwapDynamicResponse.SwapDynamicResult } + * + */ + public void setSwapDynamicResult(SwapDynamicResponse.SwapDynamicResult value) { + this.swapDynamicResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class SwapDynamicResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDynamicXML.java b/src/main/java/ru/cbr/web/SwapDynamicXML.java new file mode 100644 index 0000000..ce0b484 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDynamicXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapDynamicXML") +public class SwapDynamicXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapDynamicXMLResponse.java b/src/main/java/ru/cbr/web/SwapDynamicXMLResponse.java new file mode 100644 index 0000000..a383813 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapDynamicXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapDynamicXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapDynamicXMLResult" +}) +@XmlRootElement(name = "SwapDynamicXMLResponse") +public class SwapDynamicXMLResponse { + + @XmlElement(name = "SwapDynamicXMLResult") + protected SwapDynamicXMLResponse.SwapDynamicXMLResult swapDynamicXMLResult; + + /** + * Gets the value of the swapDynamicXMLResult property. + * + * @return + * possible object is + * {@link SwapDynamicXMLResponse.SwapDynamicXMLResult } + * + */ + public SwapDynamicXMLResponse.SwapDynamicXMLResult getSwapDynamicXMLResult() { + return swapDynamicXMLResult; + } + + /** + * Sets the value of the swapDynamicXMLResult property. + * + * @param value + * allowed object is + * {@link SwapDynamicXMLResponse.SwapDynamicXMLResult } + * + */ + public void setSwapDynamicXMLResult(SwapDynamicXMLResponse.SwapDynamicXMLResult value) { + this.swapDynamicXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class SwapDynamicXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSD.java b/src/main/java/ru/cbr/web/SwapInfoSellUSD.java new file mode 100644 index 0000000..ddde37b --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSD.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapInfoSellUSD") +public class SwapInfoSellUSD { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDResponse.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDResponse.java new file mode 100644 index 0000000..f046e2c --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapInfoSellUSDResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapInfoSellUSDResult" +}) +@XmlRootElement(name = "SwapInfoSellUSDResponse") +public class SwapInfoSellUSDResponse { + + @XmlElement(name = "SwapInfoSellUSDResult") + protected SwapInfoSellUSDResponse.SwapInfoSellUSDResult swapInfoSellUSDResult; + + /** + * Gets the value of the swapInfoSellUSDResult property. + * + * @return + * possible object is + * {@link SwapInfoSellUSDResponse.SwapInfoSellUSDResult } + * + */ + public SwapInfoSellUSDResponse.SwapInfoSellUSDResult getSwapInfoSellUSDResult() { + return swapInfoSellUSDResult; + } + + /** + * Sets the value of the swapInfoSellUSDResult property. + * + * @param value + * allowed object is + * {@link SwapInfoSellUSDResponse.SwapInfoSellUSDResult } + * + */ + public void setSwapInfoSellUSDResult(SwapInfoSellUSDResponse.SwapInfoSellUSDResult value) { + this.swapInfoSellUSDResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class SwapInfoSellUSDResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDVol.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDVol.java new file mode 100644 index 0000000..6611242 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDVol.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapInfoSellUSDVol") +public class SwapInfoSellUSDVol { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDVolResponse.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDVolResponse.java new file mode 100644 index 0000000..f1f8168 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDVolResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapInfoSellUSDVolResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapInfoSellUSDVolResult" +}) +@XmlRootElement(name = "SwapInfoSellUSDVolResponse") +public class SwapInfoSellUSDVolResponse { + + @XmlElement(name = "SwapInfoSellUSDVolResult") + protected SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult swapInfoSellUSDVolResult; + + /** + * Gets the value of the swapInfoSellUSDVolResult property. + * + * @return + * possible object is + * {@link SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult } + * + */ + public SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult getSwapInfoSellUSDVolResult() { + return swapInfoSellUSDVolResult; + } + + /** + * Sets the value of the swapInfoSellUSDVolResult property. + * + * @param value + * allowed object is + * {@link SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult } + * + */ + public void setSwapInfoSellUSDVolResult(SwapInfoSellUSDVolResponse.SwapInfoSellUSDVolResult value) { + this.swapInfoSellUSDVolResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class SwapInfoSellUSDVolResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDVolXML.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDVolXML.java new file mode 100644 index 0000000..26ae054 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDVolXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapInfoSellUSDVolXML") +public class SwapInfoSellUSDVolXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDVolXMLResponse.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDVolXMLResponse.java new file mode 100644 index 0000000..41bdc0c --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDVolXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapInfoSellUSDVolXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapInfoSellUSDVolXMLResult" +}) +@XmlRootElement(name = "SwapInfoSellUSDVolXMLResponse") +public class SwapInfoSellUSDVolXMLResponse { + + @XmlElement(name = "SwapInfoSellUSDVolXMLResult") + protected SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult swapInfoSellUSDVolXMLResult; + + /** + * Gets the value of the swapInfoSellUSDVolXMLResult property. + * + * @return + * possible object is + * {@link SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult } + * + */ + public SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult getSwapInfoSellUSDVolXMLResult() { + return swapInfoSellUSDVolXMLResult; + } + + /** + * Sets the value of the swapInfoSellUSDVolXMLResult property. + * + * @param value + * allowed object is + * {@link SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult } + * + */ + public void setSwapInfoSellUSDVolXMLResult(SwapInfoSellUSDVolXMLResponse.SwapInfoSellUSDVolXMLResult value) { + this.swapInfoSellUSDVolXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class SwapInfoSellUSDVolXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDXML.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDXML.java new file mode 100644 index 0000000..616d9d0 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapInfoSellUSDXML") +public class SwapInfoSellUSDXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapInfoSellUSDXMLResponse.java b/src/main/java/ru/cbr/web/SwapInfoSellUSDXMLResponse.java new file mode 100644 index 0000000..e407e60 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapInfoSellUSDXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapInfoSellUSDXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapInfoSellUSDXMLResult" +}) +@XmlRootElement(name = "SwapInfoSellUSDXMLResponse") +public class SwapInfoSellUSDXMLResponse { + + @XmlElement(name = "SwapInfoSellUSDXMLResult") + protected SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult swapInfoSellUSDXMLResult; + + /** + * Gets the value of the swapInfoSellUSDXMLResult property. + * + * @return + * possible object is + * {@link SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult } + * + */ + public SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult getSwapInfoSellUSDXMLResult() { + return swapInfoSellUSDXMLResult; + } + + /** + * Sets the value of the swapInfoSellUSDXMLResult property. + * + * @param value + * allowed object is + * {@link SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult } + * + */ + public void setSwapInfoSellUSDXMLResult(SwapInfoSellUSDXMLResponse.SwapInfoSellUSDXMLResult value) { + this.swapInfoSellUSDXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class SwapInfoSellUSDXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapMonthTotal.java b/src/main/java/ru/cbr/web/SwapMonthTotal.java new file mode 100644 index 0000000..46fd4d1 --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapMonthTotal.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapMonthTotal") +public class SwapMonthTotal { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapMonthTotalResponse.java b/src/main/java/ru/cbr/web/SwapMonthTotalResponse.java new file mode 100644 index 0000000..9be67bb --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapMonthTotalResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapMonthTotalResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapMonthTotalResult" +}) +@XmlRootElement(name = "SwapMonthTotalResponse") +public class SwapMonthTotalResponse { + + @XmlElement(name = "SwapMonthTotalResult") + protected SwapMonthTotalResponse.SwapMonthTotalResult swapMonthTotalResult; + + /** + * Gets the value of the swapMonthTotalResult property. + * + * @return + * possible object is + * {@link SwapMonthTotalResponse.SwapMonthTotalResult } + * + */ + public SwapMonthTotalResponse.SwapMonthTotalResult getSwapMonthTotalResult() { + return swapMonthTotalResult; + } + + /** + * Sets the value of the swapMonthTotalResult property. + * + * @param value + * allowed object is + * {@link SwapMonthTotalResponse.SwapMonthTotalResult } + * + */ + public void setSwapMonthTotalResult(SwapMonthTotalResponse.SwapMonthTotalResult value) { + this.swapMonthTotalResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class SwapMonthTotalResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/SwapMonthTotalXML.java b/src/main/java/ru/cbr/web/SwapMonthTotalXML.java new file mode 100644 index 0000000..8744dfa --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapMonthTotalXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "SwapMonthTotalXML") +public class SwapMonthTotalXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/SwapMonthTotalXMLResponse.java b/src/main/java/ru/cbr/web/SwapMonthTotalXMLResponse.java new file mode 100644 index 0000000..c04b9cd --- /dev/null +++ b/src/main/java/ru/cbr/web/SwapMonthTotalXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SwapMonthTotalXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "swapMonthTotalXMLResult" +}) +@XmlRootElement(name = "SwapMonthTotalXMLResponse") +public class SwapMonthTotalXMLResponse { + + @XmlElement(name = "SwapMonthTotalXMLResult") + protected SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult swapMonthTotalXMLResult; + + /** + * Gets the value of the swapMonthTotalXMLResult property. + * + * @return + * possible object is + * {@link SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult } + * + */ + public SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult getSwapMonthTotalXMLResult() { + return swapMonthTotalXMLResult; + } + + /** + * Sets the value of the swapMonthTotalXMLResult property. + * + * @param value + * allowed object is + * {@link SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult } + * + */ + public void setSwapMonthTotalXMLResult(SwapMonthTotalXMLResponse.SwapMonthTotalXMLResult value) { + this.swapMonthTotalXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class SwapMonthTotalXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/TestCbr/CbrInfo.java b/src/main/java/ru/cbr/web/TestCbr/CbrInfo.java new file mode 100644 index 0000000..e653ded --- /dev/null +++ b/src/main/java/ru/cbr/web/TestCbr/CbrInfo.java @@ -0,0 +1,41 @@ +package ru.cbr.web.TestCbr; + +import ru.cbr.web.*; + +import javax.xml.datatype.DatatypeConfigurationException; +import javax.xml.datatype.XMLGregorianCalendar; + +public class CbrInfo { + public static void main(String[] args) { + DailyInfo service = new DailyInfo(); + DailyInfoSoap port = service.getDailyInfoSoap(); + + XMLGregorianCalendar onDate = null; + try { + onDate = GetCursOnDateResultParser.getXMLGregorianCalendarNow(); + } catch (DatatypeConfigurationException e) { + e.printStackTrace(); + } + + EnumValutesResponse.EnumValutesResult en = port.enumValutes(false); + GetCursOnDateResponse.GetCursOnDateResult curs = port.getCursOnDate(onDate); + + onDate =port.getLatestDateTime(); + GetCursOnDateXMLResponse.GetCursOnDateXMLResult result = port.getCursOnDateXML(onDate); + GetCursOnDateResultParser.Valute list = null; + + try{ + list = GetCursOnDateResultParser.getValuteByValuteCh("EUR", result); + } catch (Exception e){ + + } + System.out.println(list.curs); + + try{ + list = GetCursOnDateResultParser.getValuteByValuteCode("840", result); + } catch (Exception e){ + + } + System.out.println(list.curs); + } +} diff --git a/src/main/java/ru/cbr/web/TestCbr/GetCursOnDateResultParser.java b/src/main/java/ru/cbr/web/TestCbr/GetCursOnDateResultParser.java new file mode 100644 index 0000000..fcfcb42 --- /dev/null +++ b/src/main/java/ru/cbr/web/TestCbr/GetCursOnDateResultParser.java @@ -0,0 +1,151 @@ +package ru.cbr.web.TestCbr; + +import org.apache.xerces.dom.ElementNSImpl; +import org.apache.xerces.dom.TextImpl; +import org.w3c.dom.Node; +import org.w3c.dom.NodeList; +import ru.cbr.web.GetCursOnDateXMLResponse; + +import javax.xml.datatype.DatatypeConfigurationException; +import javax.xml.datatype.DatatypeFactory; +import javax.xml.datatype.XMLGregorianCalendar; +import java.math.BigDecimal; +import java.util.GregorianCalendar; +import java.util.List; + +public class GetCursOnDateResultParser { + public static class Valute{ + public String name; + public String chCode; + public int code; + public BigDecimal nom; + public BigDecimal curs; + + public Valute(){ + + } + + public Valute(String vname, String vchcode, int vcode, BigDecimal vnom, BigDecimal vcurs){ + this.name = vname; + this.chCode = vchcode; + this.code = vcode; + this.nom = vnom; + this.curs = vcurs; + } + } + + public static Valute getValuteByValuteCh(String valuteCh, GetCursOnDateXMLResponse.GetCursOnDateXMLResult result) throws Exception{ + + Valute answer = new Valute(); + + List list = result.getContent(); + ElementNSImpl e = (ElementNSImpl) list.get(0); + NodeList chCodeList = e.getElementsByTagName("VchCode"); + int length = chCodeList.getLength(); + + boolean isFound = false; + for (int i = 0; i< length; i++){ + if (isFound) break; + + Node valuteChNode = chCodeList.item(i); + TextImpl textimpl = (TextImpl)valuteChNode.getFirstChild(); + String chVal = textimpl.getData(); + + if (chVal.equalsIgnoreCase(valuteCh)){ + isFound = true; + Node parent = valuteChNode.getParentNode(); + NodeList nodeList = parent.getChildNodes(); + int paramLength = nodeList.getLength(); + + for (int j=0; j list = result.getContent(); + ElementNSImpl e = (ElementNSImpl) list.get(0); + NodeList chCodeList = e.getElementsByTagName("Vcode"); + int length = chCodeList.getLength(); + + boolean isFound = false; + for (int i = 0; i< length; i++){ + if (isFound) break; + + Node valuteChNode = chCodeList.item(i); + TextImpl textimpl = (TextImpl)valuteChNode.getFirstChild(); + String chVal = textimpl.getData(); + + if (chVal.equalsIgnoreCase(valuteCode)){ + isFound = true; + Node parent = valuteChNode.getParentNode(); + NodeList nodeList = parent.getChildNodes(); + int paramLength = nodeList.getLength(); + + for (int j=0; jJava class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "ValIntDay") +public class ValIntDay { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/ValIntDayResponse.java b/src/main/java/ru/cbr/web/ValIntDayResponse.java new file mode 100644 index 0000000..214b20f --- /dev/null +++ b/src/main/java/ru/cbr/web/ValIntDayResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ValIntDayResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "valIntDayResult" +}) +@XmlRootElement(name = "ValIntDayResponse") +public class ValIntDayResponse { + + @XmlElement(name = "ValIntDayResult") + protected ValIntDayResponse.ValIntDayResult valIntDayResult; + + /** + * Gets the value of the valIntDayResult property. + * + * @return + * possible object is + * {@link ValIntDayResponse.ValIntDayResult } + * + */ + public ValIntDayResponse.ValIntDayResult getValIntDayResult() { + return valIntDayResult; + } + + /** + * Sets the value of the valIntDayResult property. + * + * @param value + * allowed object is + * {@link ValIntDayResponse.ValIntDayResult } + * + */ + public void setValIntDayResult(ValIntDayResponse.ValIntDayResult value) { + this.valIntDayResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class ValIntDayResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/ValIntDayXML.java b/src/main/java/ru/cbr/web/ValIntDayXML.java new file mode 100644 index 0000000..33b8600 --- /dev/null +++ b/src/main/java/ru/cbr/web/ValIntDayXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "ValIntDayXML") +public class ValIntDayXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/ValIntDayXMLResponse.java b/src/main/java/ru/cbr/web/ValIntDayXMLResponse.java new file mode 100644 index 0000000..88c4a29 --- /dev/null +++ b/src/main/java/ru/cbr/web/ValIntDayXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ValIntDayXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "valIntDayXMLResult" +}) +@XmlRootElement(name = "ValIntDayXMLResponse") +public class ValIntDayXMLResponse { + + @XmlElement(name = "ValIntDayXMLResult") + protected ValIntDayXMLResponse.ValIntDayXMLResult valIntDayXMLResult; + + /** + * Gets the value of the valIntDayXMLResult property. + * + * @return + * possible object is + * {@link ValIntDayXMLResponse.ValIntDayXMLResult } + * + */ + public ValIntDayXMLResponse.ValIntDayXMLResult getValIntDayXMLResult() { + return valIntDayXMLResult; + } + + /** + * Sets the value of the valIntDayXMLResult property. + * + * @param value + * allowed object is + * {@link ValIntDayXMLResponse.ValIntDayXMLResult } + * + */ + public void setValIntDayXMLResult(ValIntDayXMLResponse.ValIntDayXMLResult value) { + this.valIntDayXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class ValIntDayXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/XVol.java b/src/main/java/ru/cbr/web/XVol.java new file mode 100644 index 0000000..f20d7ab --- /dev/null +++ b/src/main/java/ru/cbr/web/XVol.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "XVol") +public class XVol { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/XVolResponse.java b/src/main/java/ru/cbr/web/XVolResponse.java new file mode 100644 index 0000000..51384a3 --- /dev/null +++ b/src/main/java/ru/cbr/web/XVolResponse.java @@ -0,0 +1,130 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="XVolResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "xVolResult" +}) +@XmlRootElement(name = "XVolResponse") +public class XVolResponse { + + @XmlElement(name = "XVolResult") + protected XVolResponse.XVolResult xVolResult; + + /** + * Gets the value of the xVolResult property. + * + * @return + * possible object is + * {@link XVolResponse.XVolResult } + * + */ + public XVolResponse.XVolResult getXVolResult() { + return xVolResult; + } + + /** + * Sets the value of the xVolResult property. + * + * @param value + * allowed object is + * {@link XVolResponse.XVolResult } + * + */ + public void setXVolResult(XVolResponse.XVolResult value) { + this.xVolResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "any" + }) + public static class XVolResult { + + @XmlAnyElement(lax = true) + protected Object any; + + /** + * Gets the value of the any property. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getAny() { + return any; + } + + /** + * Sets the value of the any property. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setAny(Object value) { + this.any = value; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/XVolXML.java b/src/main/java/ru/cbr/web/XVolXML.java new file mode 100644 index 0000000..9c1a824 --- /dev/null +++ b/src/main/java/ru/cbr/web/XVolXML.java @@ -0,0 +1,96 @@ + +package ru.cbr.web; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="fromDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="ToDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fromDate", + "toDate" +}) +@XmlRootElement(name = "XVolXML") +public class XVolXML { + + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar fromDate; + @XmlElement(name = "ToDate", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toDate; + + /** + * Gets the value of the fromDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFromDate() { + return fromDate; + } + + /** + * Sets the value of the fromDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFromDate(XMLGregorianCalendar value) { + this.fromDate = value; + } + + /** + * Gets the value of the toDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToDate() { + return toDate; + } + + /** + * Sets the value of the toDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToDate(XMLGregorianCalendar value) { + this.toDate = value; + } + +} diff --git a/src/main/java/ru/cbr/web/XVolXMLResponse.java b/src/main/java/ru/cbr/web/XVolXMLResponse.java new file mode 100644 index 0000000..48c7949 --- /dev/null +++ b/src/main/java/ru/cbr/web/XVolXMLResponse.java @@ -0,0 +1,140 @@ + +package ru.cbr.web; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlMixed; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="XVolXMLResult" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <any/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "xVolXMLResult" +}) +@XmlRootElement(name = "XVolXMLResponse") +public class XVolXMLResponse { + + @XmlElement(name = "XVolXMLResult") + protected XVolXMLResponse.XVolXMLResult xVolXMLResult; + + /** + * Gets the value of the xVolXMLResult property. + * + * @return + * possible object is + * {@link XVolXMLResponse.XVolXMLResult } + * + */ + public XVolXMLResponse.XVolXMLResult getXVolXMLResult() { + return xVolXMLResult; + } + + /** + * Sets the value of the xVolXMLResult property. + * + * @param value + * allowed object is + * {@link XVolXMLResponse.XVolXMLResult } + * + */ + public void setXVolXMLResult(XVolXMLResponse.XVolXMLResult value) { + this.xVolXMLResult = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <any/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "content" + }) + public static class XVolXMLResult { + + @XmlMixed + @XmlAnyElement(lax = true) + protected List content; + + /** + * Gets the value of the content property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the content property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getContent().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Object } + * {@link String } + * + * + */ + public List getContent() { + if (content == null) { + content = new ArrayList(); + } + return this.content; + } + + } + +} diff --git a/src/main/java/ru/cbr/web/package-info.java b/src/main/java/ru/cbr/web/package-info.java new file mode 100644 index 0000000..efd5cda --- /dev/null +++ b/src/main/java/ru/cbr/web/package-info.java @@ -0,0 +1,6 @@ +/** + * ver 31.01.2017 + * + */ +@javax.xml.bind.annotation.XmlSchema(namespace = "http://web.cbr.ru/", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package ru.cbr.web; From 32f9cdfc37155e9c702530b928573a6c71b74879 Mon Sep 17 00:00:00 2001 From: Igor Ivannikov Date: Sat, 29 Apr 2017 19:42:56 +0300 Subject: [PATCH 16/17] add del in feedback.jsp --- web/WEB-INF/views/feedback.jsp | 44 ++++++++++++++++++++++++++++------ 1 file changed, 37 insertions(+), 7 deletions(-) diff --git a/web/WEB-INF/views/feedback.jsp b/web/WEB-INF/views/feedback.jsp index 7494b57..06fe081 100644 --- a/web/WEB-INF/views/feedback.jsp +++ b/web/WEB-INF/views/feedback.jsp @@ -9,6 +9,17 @@ Отзывы +
@@ -86,9 +116,9 @@
- +
From a170b0b3081eff823cf405128141f5000dfbf4d6 Mon Sep 17 00:00:00 2001 From: yuhans Date: Wed, 3 May 2017 19:31:19 +0300 Subject: [PATCH 17/17] change wsdl location --- src/main/java/ru/cbr/web/DailyInfo.java | 14 +++++--------- cbrInfo.wsdl => src/main/resources/cbrInfo.wsdl | 0 2 files changed, 5 insertions(+), 9 deletions(-) rename cbrInfo.wsdl => src/main/resources/cbrInfo.wsdl (100%) diff --git a/src/main/java/ru/cbr/web/DailyInfo.java b/src/main/java/ru/cbr/web/DailyInfo.java index 81b699f..05dacbb 100644 --- a/src/main/java/ru/cbr/web/DailyInfo.java +++ b/src/main/java/ru/cbr/web/DailyInfo.java @@ -1,25 +1,21 @@ package ru.cbr.web; +import javax.xml.namespace.QName; +import javax.xml.ws.*; import java.net.MalformedURLException; import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.Service; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceException; -import javax.xml.ws.WebServiceFeature; /** - * ver 31.01.2017 + * ��� ������ ��� ��������� ���������� ������ ver 31.01.2017 * * This class was generated by the JAX-WS RI. * JAX-WS RI 2.2.9-b130926.1035 * Generated source version: 2.2 * */ -@WebServiceClient(name = "DailyInfo", targetNamespace = "http://web.cbr.ru/", wsdlLocation = "file:/D:/Programming/Projects/Java%20Lessons/Khasang/delivery/cbrInfo.wsdl") +@WebServiceClient(name = "DailyInfo", targetNamespace = "http://web.cbr.ru/", wsdlLocation = "classpath:cbrInfo.wsdl") public class DailyInfo extends Service { @@ -32,7 +28,7 @@ public class DailyInfo URL url = null; WebServiceException e = null; try { - url = new URL("file:/D:/Programming/Projects/Java%20Lessons/Khasang/delivery/cbrInfo.wsdl"); + url = new URL("classpath:cbrInfo.wsdl"); } catch (MalformedURLException ex) { e = new WebServiceException(ex); } diff --git a/cbrInfo.wsdl b/src/main/resources/cbrInfo.wsdl similarity index 100% rename from cbrInfo.wsdl rename to src/main/resources/cbrInfo.wsdl