Ignore:
Timestamp:
10/06/20 13:12:20 (4 years ago)
Author:
bart
Message:

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

Location:
profileconnection/src/main/java/geniusweb/profileconnection
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • profileconnection/src/main/java/geniusweb/profileconnection/ProfileConnectionFactory.java

    r1 r24  
    1717
    1818        /**
    19          * @uri the URI that can provide the {@link Profile}. Support both the ws
    20          *      and the file scheme for the uri.
     19         * @param uri      the URI that can provide the {@link Profile}. Support
     20         *                 both the ws and the file scheme for the uri.
    2121         * @param reporter the {@link Reporter} to log issues to
     22         * @return a {@link ProfileInterface}
     23         * @throws IOException         if connection can't be made
     24         * @throws DeploymentException if endpoint can't be published
    2225         */
    2326        public static ProfileInterface create(URI uri, Reporter reporter)
  • profileconnection/src/main/java/geniusweb/profileconnection/ProfileInterface.java

    r10 r24  
    1414         * @return the latest version of the profile. May change at any time, after
    1515         *         someone updates the version on the server. Call to this may block
    16          *         for limited time if the profile is not yet available.
    17          *         @throws IOException if profile can not be fetched     */
     16         *         for limited time if the profile is not yet available.
     17         * @throws IOException if profile can not be fetched
     18         */
    1819        public Profile getProfile() throws IOException;
    1920}
  • profileconnection/src/main/java/geniusweb/profileconnection/WebsocketProfileConnector.java

    r20 r24  
    3737         *                    websockets. Typically ContainerProvider
    3838         *                    .getWebSocketContainer()
    39          * @throws DeploymentException
    40          * @throws IOException
     39         * @throws DeploymentException if the annotated endpoint instance is not
     40         *                             valid
     41         * @throws IOException         if there was a network or protocol problem
     42         *                             that prevented the client endpoint being
     43         *                             connected to its server.
     44         *
    4145         */
    4246        public WebsocketProfileConnector(URI uri, Reporter reporter,
Note: See TracChangeset for help on using the changeset viewer.