Changeset 24 for profileconnection
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- profileconnection
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
profileconnection/pom.xml
r23 r24 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>profileconnection</artifactId> 8 <version>1.5. 2</version> <!-- must equal ${geniusweb.version} -->8 <version>1.5.3</version> <!-- must equal ${geniusweb.version} --> 9 9 <packaging>jar</packaging> 10 10 … … 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 18 <jackson-2-version>2.9.10</jackson-2-version> 19 <geniusweb.version>1.5. 2</geniusweb.version>19 <geniusweb.version>1.5.3</geniusweb.version> 20 20 </properties> 21 21 … … 162 162 <groupId>org.apache.maven.plugins</groupId> 163 163 <artifactId>maven-javadoc-plugin</artifactId> 164 <version> 2.10.1</version>164 <version>3.2.0</version> 165 165 <executions> 166 166 <execution> … … 169 169 <goal>jar</goal> 170 170 </goals> 171 <configuration>172 <additionalparam>${javadoc.opts}</additionalparam>173 <additionalparam>-Xdoclint:none</additionalparam>174 </configuration>175 171 </execution> 176 172 </executions> -
profileconnection/src/main/java/geniusweb/profileconnection/ProfileConnectionFactory.java
r1 r24 17 17 18 18 /** 19 * @ uri the URI that can provide the {@link Profile}. Support both the ws20 * 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. 21 21 * @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 22 25 */ 23 26 public static ProfileInterface create(URI uri, Reporter reporter) -
profileconnection/src/main/java/geniusweb/profileconnection/ProfileInterface.java
r10 r24 14 14 * @return the latest version of the profile. May change at any time, after 15 15 * 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 */ 18 19 public Profile getProfile() throws IOException; 19 20 } -
profileconnection/src/main/java/geniusweb/profileconnection/WebsocketProfileConnector.java
r20 r24 37 37 * websockets. Typically ContainerProvider 38 38 * .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 * 41 45 */ 42 46 public WebsocketProfileConnector(URI uri, Reporter reporter,
Note:
See TracChangeset
for help on using the changeset viewer.