Skip to content
Snippets Groups Projects
Commit 7c16a02e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unused ElementIdentifierDetails class removed

parent 1db14cee
No related branches found
No related tags found
1 merge request!207Resolve "remove unused JSF code"
......@@ -10,8 +10,6 @@ import lcsb.mapviewer.model.map.model.ModelData;
import lcsb.mapviewer.model.user.User;
import lcsb.mapviewer.services.SecurityException;
import lcsb.mapviewer.services.UserAccessException;
import lcsb.mapviewer.services.search.ElementIdentifierDetails;
import lcsb.mapviewer.services.search.data.ElementIdentifier;
/**
* Service responsible for comments functionality.
......
package lcsb.mapviewer.services.search;
import java.io.Serializable;
/**
* Class with detailed information about elements for specific search result.
*
* @author Piotr Gawron
*
*/
public abstract class ElementIdentifierDetails implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
}
package lcsb.mapviewer.services.search.comment;
import lcsb.mapviewer.model.map.Comment;
import lcsb.mapviewer.services.search.ElementIdentifierDetails;
/**
* Class with detailed information about element comments.
*
* @author Piotr Gawron
*
*/
public class CommentDetails extends ElementIdentifierDetails {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Identifier of the comment.
*/
private String commentId;
/**
* Content of the comment.
*/
private String commentContent;
/**
* Default constructor.
*
* @param id
* {@link #commentId}
* @param content
* {@link #commentContent}
*/
public CommentDetails(String id, String content) {
this.commentId = id;
this.commentContent = content;
}
/**
* Default constructor.
*
* @param comment
* comment with detailed information
*/
public CommentDetails(Comment comment) {
commentId = comment.getId() + "";
commentContent = comment.getContent();
}
/**
* @return the commentId
* @see #commentId
*/
public String getCommentId() {
return commentId;
}
/**
* @param commentId
* the commentId to set
* @see #commentId
*/
public void setCommentId(String commentId) {
this.commentId = commentId;
}
/**
* @return the commentContent
* @see #commentContent
*/
public String getCommentContent() {
return commentContent;
}
/**
* @param commentContent
* the commentContent to set
* @see #commentContent
*/
public void setCommentContent(String commentContent) {
this.commentContent = commentContent;
}
}
......@@ -4,17 +4,15 @@ import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import lcsb.mapviewer.services.search.comment.AllCommentTests;
import lcsb.mapviewer.services.search.data.AllSearchDataTests;
import lcsb.mapviewer.services.search.db.AllSearchDbTests;
import lcsb.mapviewer.services.search.layout.AllSearchLayoutTests;
@RunWith(Suite.class)
@SuiteClasses({ AllCommentTests.class, //
AllSearchDbTests.class, //
AllSearchDataTests.class, //
AllSearchLayoutTests.class, //
ElementMatcherTest.class, //
@SuiteClasses({ AllSearchDbTests.class, //
AllSearchDataTests.class, //
AllSearchLayoutTests.class, //
ElementMatcherTest.class, //
})
public class AllSearchTests {
......
package lcsb.mapviewer.services.search.comment;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ CommentDetailsTest.class })
public class AllCommentTests {
}
package lcsb.mapviewer.services.search.comment;
import java.awt.geom.Point2D;
import org.apache.commons.lang3.SerializationUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import lcsb.mapviewer.model.map.Comment;
import lcsb.mapviewer.model.map.model.ModelData;
public class CommentDetailsTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void testSerialization() {
try {
Comment comment = new Comment();
comment.setCoordinates(new Point2D.Double());
comment.setSubmodelData(new ModelData());
SerializationUtils.serialize(new CommentDetails(comment));
} catch (Exception e) {
e.printStackTrace();
throw e;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment