Skip to content

Commit

Permalink
Renamed to ContentRepresentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Derricutt committed May 3, 2014
1 parent aab6a59 commit dbeabb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
@@ -1,6 +1,6 @@
package com.theoryinpractise.halbuilder.api;

public interface SourceRepresentation extends ReadableRepresentation {
public interface ContentRepresentation extends ReadableRepresentation {

String getContent();

Expand Down
Expand Up @@ -31,7 +31,7 @@ public abstract class RepresentationFactory {

public abstract Representation newRepresentation(String href);

public abstract ReadableRepresentation readRepresentation(String contentType, Reader reader);
public abstract ContentRepresentation readRepresentation(String contentType, Reader reader);

public abstract Set<URI> getFlags();

Expand Down
Expand Up @@ -4,6 +4,6 @@

public interface RepresentationReader {

SourceRepresentation read(Reader source);
ContentRepresentation read(Reader source);

}

0 comments on commit dbeabb1

Please sign in to comment.