> + * Unless required by applicable law or agreed to in writing, software > + * distributed under the License is distributed on an "AS IS" BASIS, > + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. > + * See the License for the specific language governing permissions and > + * limitations under the License. > + */ > +package org.jclouds.openstack.swift.v1.reference; > + > +/** > + * Common headers in Swift. > + * > + * @author Jeremy Daggett > + */ > +public interface SwiftHeaders { > + > + public static final String USER_METADATA_PREFIX = "X-Object-Meta-";
`public static final` not needed for all of this since fields in an interface are implicitly declared so? Cf. http://stackoverflow.com/questions/17592872/is-public-static-final-redunant-for-constant-from-java-interface --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/73/files#r8710068