Package com.iggroup.oss.restdoclet.doclet

Examples of com.iggroup.oss.restdoclet.doclet.RestDocumentationProperties


    */
   public void createProperties(final String artifactId, final String version,
                                final String finalName,
                                final String classifier, final String scmUrl)
      throws IOException {
      final RestDocumentationProperties props =
         new RestDocumentationProperties();
      props.setArtifactId(artifactId);
      props.setVersion(version);
      props.setFinalName(finalName);
      props.setClassifier(classifier);
      props.setScmUrl(scmUrl);
      props.setTimestamp(Calendar.getInstance().getTime().toString());
      props.store(new FileOutputStream(new File(directories
         .getClassesDirectory(), FILE)));
   }
View Full Code Here


      File propFile =
         new File(configPath + File.separator + applicationName
            + File.separator + "rd.properties");

      return new RestDocumentationProperties(new FileInputStream(propFile));

   }
View Full Code Here

TOP

Related Classes of com.iggroup.oss.restdoclet.doclet.RestDocumentationProperties

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.