Index: modules/library/api/src/main/java/org/geotools/data/Query.java
===================================================================
--- modules/library/api/src/main/java/org/geotools/data/Query.java	(revision 37364)
+++ modules/library/api/src/main/java/org/geotools/data/Query.java	(working copy)
@@ -157,6 +157,11 @@
      * are to be retrieved.
      */
     public static final List<PropertyName> ALL_PROPERTIES = null;
+    
+    /**
+     * The default value of the srsName attribute in the request   
+     */
+    protected URI targetSrsName = null;
 
     /** The properties to fetch */
     protected List<PropertyName> properties;
@@ -325,6 +330,7 @@
       this.version = query.getVersion();
       this.hints = query.getHints();
       this.startIndex = query.getStartIndex();
+      this.targetSrsName=query.getTargetSrsName();
     }
 
     /**
@@ -903,4 +909,12 @@
         
         return returnString.toString();
     }
+    
+    public void setTargetSrsName(URI srsName){
+        this.targetSrsName=srsName;
+    }
+    
+    public URI getTargetSrsName(){
+        return this.targetSrsName;
+    }
 }
